文件操作 - month-separator.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/the-events-calendar/src/views/v2/list/month-separator.php
编辑文件内容
<?php /** * View: List View Month separator * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/list/month-separator.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @version 6.15.12 * * @since 5.0.0 * @since 6.15.12 Wrapped time in `h3` element. * * @var WP_Post $event The event post object with properties added by the `tribe_get_event` function. * @var \DateTimeInterface $request_date The request date object. This will be "today" if the user did not input any * date, or the user input date. * @var bool $is_past Whether the current display mode is "past" or not. * * @see tribe_get_event() For the format of the event object. */ use Tribe\Events\Views\V2\Utils; if ( empty( $is_past ) && ! empty( $request_date ) ) { $should_have_month_separator = Utils\Separators::should_have_month( $this->get( 'events' ), $event, $request_date ); } else { $should_have_month_separator = Utils\Separators::should_have_month( $this->get( 'events' ), $event ); } if ( ! $should_have_month_separator ) { return; } /* * Depending on the request date we show the later date between the real event start date and the request date. * This avoids users from seeing results "in the past" in relation to an input date or "today". * This does not apply to past events. */ $sep_date = empty( $is_past ) && ! empty( $request_date ) ? max( $event->dates->start_display, $request_date ) : $event->dates->start_display; ?> <li class="tribe-events-calendar-list__month-separator"> <h3> <time class="tribe-events-calendar-list__month-separator-text tribe-common-h7 tribe-common-h6--min-medium tribe-common-h--alt" > <?php echo esc_html( $sep_date->format_i18n( 'F Y' ) ); ?> </time> </h3> </li>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件