文件操作 - nav.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/the-events-calendar/src/views/v2/list/top-bar/nav.php
编辑文件内容
<?php /** * View: Top Bar - Navigation * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/list/top-bar/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 $next_url The URL to the next page, if any, or an empty string. * * @since 5.0.1 * @since 6.15.7 Added aria-label attribute to nav. * * @version 6.15.7 */ $aria_label = sprintf( /* translators: %s: Event label plural */ __( 'Top %s list pagination', 'the-events-calendar' ), tribe_get_event_label_plural_lowercase() ); ?> <nav class="tribe-events-c-top-bar__nav tribe-common-a11y-hidden" aria-label="<?php echo esc_attr( $aria_label ); ?>"> <ul class="tribe-events-c-top-bar__nav-list"> <?php if ( ! empty( $prev_url ) ) { $this->template( 'list/top-bar/nav/prev' ); } else { $this->template( 'list/top-bar/nav/prev-disabled' ); } ?> <?php if ( ! empty( $next_url ) ) { $this->template( 'list/top-bar/nav/next' ); } else { $this->template( 'list/top-bar/nav/next-disabled' ); } ?> </ul> </nav>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件