Avoid Schema error: "name: A value is required for the location field"

This commit is contained in:
savvasha
2019-03-28 12:46:16 +02:00
parent afc6936ec8
commit fd74b2c7c9

View File

@@ -251,6 +251,7 @@ $identifier = uniqid( 'eventlist_' );
endif;
echo '<tr class="sp-row sp-post' . ( $i % 2 == 0 ? ' alternate' : '' ) . ' sp-row-no-' . $i . '" itemscope itemtype="http://schema.org/SportsEvent">';
echo '<td style="display:none;" itemprop="name">'.$event->post_title.'</td>';
$date_html = '<date>' . get_post_time( 'Y-m-d H:i:s', false, $event ) . '</date>' . apply_filters( 'sportspress_event_date', get_post_time( get_option( 'date_format' ), false, $event, true ), $event->ID );