![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/giraluanda.com/wp-content/plugins/the-events-calendar/src/views/v2/day/ |
<?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 tec_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 ] ); ?> <?php $this->template( 'day/event/category', [ 'event' => $event ] ); ?> </header> <?php $this->template( 'day/event/description', [ 'event' => $event ] ); ?> <?php $this->template( 'day/event/cost', [ 'event' => $event ] ); ?> </div> </div> </article>