golden hour
/var/www/html/wp-content/plugins/the-events-calendar/src/views/v2/day
⬆️ Go Up
Upload
File/Folder
Size
Actions
event
-
Del
OK
event.php
1.38 KB
Del
OK
nav
-
Del
OK
nav.php
985 B
Del
OK
time-separator.php
1.11 KB
Del
OK
top-bar
-
Del
OK
top-bar.php
569 B
Del
OK
type-separator.php
986 B
Del
OK
Edit: event.php
<?php /** * View: Day Event * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/day/event.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @since 5.0.0 * * @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. */ $classes = tribe_get_post_class( [ 'tribe-common-g-row', 'tribe-common-g-row--gutters', 'tribe-events-calendar-day__event' ], $event->ID ); if ( ! empty( $event->featured ) ) { $classes[] = 'tribe-events-calendar-day__event--featured'; } ?> <article <?php tribe_classes( $classes ); ?>> <div class="tribe-events-calendar-day__event-content tribe-common-g-col"> <?php $this->template( 'day/event/featured-image', [ 'event' => $event ] ); ?> <div class="tribe-events-calendar-day__event-details"> <header class="tribe-events-calendar-day__event-header"> <?php $this->template( 'day/event/date', [ 'event' => $event ] ); ?> <?php $this->template( 'day/event/title', [ 'event' => $event ] ); ?> <?php $this->template( 'day/event/venue', [ 'event' => $event ] ); ?> </header> <?php $this->template( 'day/event/description', [ 'event' => $event ] ); ?> <?php $this->template( 'day/event/cost', [ 'event' => $event ] ); ?> </div> </div> </article>
Save