File "featured.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/views/v2/day/event/date/featured.php
File size: 1009 B
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* View: Day View - Single Event Featured Icon.
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/events/v2/day/event/date/featured.php
*
* See more documentation about our views templating system.
*
* @link {INSERT_ARTICLE_LINK_HERE}
*
* @since 5.1.1
*
* @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
*/
if ( empty( $event->featured ) ) {
return;
}
?>
<em
class="tribe-events-calendar-day__event-datetime-featured-icon"
title="<?php esc_attr_e( 'Featured', 'the-events-calendar' ); ?>"
>
<?php $this->template( 'components/icons/featured', [ 'classes' => [ 'tribe-events-calendar-day__event-datetime-featured-icon-svg' ] ] ); ?>
</em>
<span class="tribe-events-calendar-day__event-datetime-featured-text tribe-common-a11y-visual-hide">
<?php esc_html_e( 'Featured', 'the-events-calendar' ); ?>
</span>