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