golden hour
/var/www/html/wp-content/plugins/the-events-calendar/src/views/v2/components/breadcrumbs
⬆️ Go Up
Upload
File/Folder
Size
Actions
breadcrumb.php
658 B
Del
OK
linked-breadcrumb.php
753 B
Del
OK
Edit: linked-breadcrumb.php
<?php /** * View: Linked Breadcrumb * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/components/breadcrumbs/linked-breadcrumb.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @version 5.3.0 * * @var array $breadcrumb Data for breadcrumb. */ ?> <li class="tribe-events-c-breadcrumbs__list-item"> <a href="<?php echo esc_url( $breadcrumb['link'] ); ?>" class="tribe-events-c-breadcrumbs__list-item-link" data-js="tribe-events-view-link" > <?php echo esc_html( $breadcrumb['label'] ); ?> </a> <?php $this->template( 'components/icons/caret-right', [ 'classes' => [ 'tribe-events-c-breadcrumbs__list-item-icon-svg' ] ] ); ?> </li>
Save