TheatreEvent에 구조화 된 마크 업을 적용하려고합니다. Heres는 내가 함께 일하고 있어요 코드 : https://search.google.com/structured-data/testing-tool구조화 된 마크 업
:<!-- MAIN CONTENT -->
<div class="container" itemscope itemtype="http://schema.org/TheaterEvent">
<div class="col-md-3">
<div class="event-details">
<h3>Event Info</h3>
<p itemprop="startDate"><strong>Date: </strong><?php the_field('date_of_event'); ?></p>
<p itemprop="doorTime"><strong>Time: </strong><?php the_field('start_time'); ?> – <?php the_field('end_time'); ?></p>
<p><strong>Price: </strong><?php the_field('price'); ?></p>
<p><strong>Venue: </strong><?php the_field('venue'); ?></p>
</div>
<div class="book-event-button">
<a href="<?php the_field('button_link'); ?>" target="_blank" class="btn btn-plum btn-lg btn-event" role="button"><?php the_field('button_text');?></a>
</div>
<div class="book-event-button" style="margin-top:20px;">
<a href="<?php the_field('event_pack_upload'); ?>" target="_blank" class="btn btn-teal btn-lg btn-event" role="button"><?php the_field('event_pack_button_text');?></a>
</div>
<div class="book-event-button" style="margin-top:20px;">
<a href="<?php bloginfo('url'); ?>/youth-community/support-us/events/tips-tools/" target="_blank" class="btn btn-plum btn-lg btn-event" role="button">TIPS AND TOOLS</a>
</div>
</div>
<div class="col-md-9">
<div class="page-header">
<h1 itemprop="name"><?php the_title(); ?></h1>
<p itemprop="description"><?php the_field('event_description'); ?></p>
</div>
</div>
</div>
당신은 내가 itemprop에 등을 나타내고 itemtype 등을 사용하여 마크 업을 추가하는 것을 시도했다 ...하지만 난 구글 검사에서 오류를 많이보고 있어요 볼 수 있습니다
페이지는 여기 : https://www.leicesterymca.co.uk/show/?showid=b74e95df-58f7-e611-80d7-00505601004c 그리고 나는 두 DIV 이상으로 퍼지는 정보가 문제 였는지 궁금해했습니다 ...
모든 안내는 크게 감사하겠습니다.