File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
/**
* View: Month View Nav Template
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/events/v2/month/mobile-events/nav.php
*
* See more documentation about our views templating system.
*
* @link http://evnt.is/1aiy
*
* @var string $prev_url The URL to the previous page, if any, or an empty string.
* @var string $prev_label The label for the previous link.
* @var string $next_url The URL to the next page, if any, or an empty string.
* @var string $next_label The label for the next link.
* @var string $today_url The URL to the today page, if any, or an empty string.
*
* @version 4.9.10
*
*/
?>
<nav class="tribe-events-calendar-month-nav tribe-events-c-nav">
<ul class="tribe-events-c-nav__list">
<?php
if ( ! empty( $prev_url ) ) {
$this->template( 'month/mobile-events/nav/prev', [ 'label' => $prev_label, 'link' => $prev_url ] );
} else {
$this->template( 'month/mobile-events/nav/prev-disabled', [ 'label' => $prev_label ] );
}
?>
<?php $this->template( 'month/mobile-events/nav/today' ) ?>
<?php
if ( ! empty( $next_url ) ) {
$this->template( 'month/mobile-events/nav/next', [ 'label' => $next_label, 'link' => $next_url ] );
} else {
$this->template( 'month/mobile-events/nav/next-disabled', [ 'label' => $next_label ] );
}
?>
</ul>
</nav>
