File Editor
Directories:
.. (Back)
date
Files:
cost.php
date.php
description.php
featured-image.php
title.php
venue.php
Create New File
Create
Edit File: date.php
<?php /** * View: Day View - Single Event Date * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/day/event/date.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @since 4.9.9 * @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.1.1 */ use Tribe__Date_Utils as Dates; $event_date_attr = $event->dates->start->format( Dates::DBDATEFORMAT ); ?> <div class="tribe-events-calendar-day__event-datetime-wrapper tribe-common-b2"> <?php $this->template( 'day/event/date/featured' ); ?> <time class="tribe-events-calendar-day__event-datetime" datetime="<?php echo esc_attr( $event_date_attr ); ?>"> <?php echo $event->schedule_details->value(); ?> </time> <?php $this->template( 'day/event/date/meta', [ 'event' => $event ] ); ?> </div>
Save Changes
Rename File
Rename