✏️ 正在编辑: countdown-widget.php
路径:
/home/lssfapb/www/wp-content/themes/Avada/tribe-events/pro/widgets/countdown-widget.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Events Pro Countdown Widget * This is the template for the output of the event countdown widget. * All the items are turned on and off through the widget admin. * There is currently no default styling, which is highly needed. * * Override this template in your own theme by creating a file at [your-theme]/tribe-events/pro/widgets/countdown-widget.php * * @package TribeEventsCalendarPro * */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } ?> <div class="tribe-countdown-timer tribe-clearfix"> <div class="tribe-countdown-days tribe-countdown-number"> <span class="fusion-tribe-counterdown-over">DD</span> <span class="tribe-countdown-under"><?php esc_html_e( 'days', 'tribe-events-calendar-pro' ); ?></span> </div> <div class="tribe-countdown-hours tribe-countdown-number"> <span class="fusion-tribe-counterdown-over">HH</span> <span class="tribe-countdown-under"><?php esc_html_e( 'hours', 'tribe-events-calendar-pro' ); ?></span> </div> <div class="tribe-countdown-minutes tribe-countdown-number"> <span class="fusion-tribe-counterdown-over">MM</span> <span class="tribe-countdown-under"><?php esc_html_e( 'min', 'tribe-events-calendar-pro' ); ?></span> </div> <?php if ( $show_seconds ) : ?> <div class="tribe-countdown-seconds tribe-countdown-number tribe-countdown-right"> <span class="fusion-tribe-counterdown-over">SS</span> <span class="tribe-countdown-under"><?php esc_html_e( 'sec', 'tribe-events-calendar-pro' ); ?></span> </div> <?php endif; ?> </div>
💾 保存文件
← 返回文件管理器