文件操作 - wc-price-html.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/templates/single/course/wc-price-html.php
编辑文件内容
<?php /** * Template for displaying price * * @package Tutor\Templates * @subpackage Single\Course * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.0.0 */ $is_purchasable = tutor_utils()->is_course_purchasable(); $price = apply_filters( 'get_tutor_course_price', null, get_the_ID() ); if ( $is_purchasable && $price ) { echo '<div class="price">' . $price . '</div>';//phpcs:ignore } else { ?> <div class="price"> <?php esc_html_e( 'Free', 'tutor' ); ?> </div> <?php } ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件