文件操作 - dashboard-isolated.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/templates/dashboard-isolated.php
编辑文件内容
<?php /** * Base template for isolated dashboard quiz attempt pages. * * @package Tutor\Templates * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 4.0.0 */ defined( 'ABSPATH' ) || exit; use TUTOR\Dashboard; $dashboard_page = get_query_var( 'tutor_dashboard_page' ); $dashboard_subpage = get_query_var( 'tutor_dashboard_sub_page' ); $isolated_pages = Dashboard::get_isolated_pages(); $page_meta = Dashboard::get_page_meta_data( $dashboard_page, $dashboard_subpage, $isolated_pages ); $page_data = $page_meta['page_data']; $meta_title = $page_meta['meta_title']; Dashboard::set_document_title( $meta_title ); ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <?php wp_head(); ?> </head> <body <?php body_class( '' ); ?>> <?php wp_body_open(); ?> <?php $page_template = $page_data['template'] ?? ''; $back_url = tutor_utils()->tutor_dashboard_url(); $close_url = $back_url; ?> <div class="tutor-dashboard-isolated-page-wrapper"> <?php if ( $page_template && file_exists( $page_template ) ) { require_once $page_template; } ?> </div> <?php wp_footer(); ?> </body> </html>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件