File "date.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/views/v2/latest-past/event/date.php
File size: 1.08 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* View: Latest Past View - Single Event Date
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/events/v2/latest-past/event/date.php
*
* See more documentation about our views templating system.
*
* @link http://evnt.is/1aiy
*
* @since 5.1.0
* @since 5.1.1 Move icons into separate templates.
*
* @var WP_Post $event The event post object with properties added by the `tribe_get_event` function.
*
* @see tribe_get_event() For the format of the event object.
*
* @version 5.3.0
*/
use Tribe__Date_Utils as Dates;
$event_date_attr = $event->dates->start->format( Dates::DBDATEFORMAT );
?>
<div class="tribe-events-calendar-latest-past__event-datetime-wrapper tribe-common-b2">
<?php $this->template( 'latest-past/event/date/featured', [ 'event' => $event ] ); ?>
<time class="tribe-events-calendar-latest-past__event-datetime" datetime="<?php echo esc_attr( $event_date_attr ); ?>">
<?php echo $event->schedule_details->value(); ?>
</time>
<?php $this->template( 'latest-past/event/date/meta', [ 'event' => $event ] ); ?>
</div>