文件操作 - functions.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/functions.php
编辑文件内容
<?php /** * Total WordPress Theme. * * Theme URI : https://total.wpexplorer.com/ * Documentation : https://total.wpexplorer.com/docs/ * License : https://themeforest.net/licenses/terms/regular * Subscribe : https://total.wpexplorer.com/newsletter/ * * @author WPExplorer * @package TotalTheme * @version 5.12 */ defined( 'ABSPATH' ) || exit; /** * Define theme constants. */ // TotalTheme version. define( 'TOTAL_THEME_ACTIVE', true ); define( 'WPEX_THEME_VERSION', '5.12' ); // Supported Bundled plugin versions. define( 'WPEX_VC_SUPPORTED_VERSION', '7.4' ); define( 'WPEX_THEME_CORE_PLUGIN_SUPPORTED_VERSION', '1.8.2' ); // Theme Branding. define( 'WPEX_THEME_BRANDING', get_theme_mod( 'theme_branding', 'Total' ) ); // Theme changelog URL. define( 'WPEX_THEME_CHANGELOG_URL', 'https://total.wpexplorer.com/docs/changelog/' ); // Theme directory location and URL. define( 'WPEX_THEME_DIR', get_template_directory() ); define( 'WPEX_THEME_URI', get_template_directory_uri() ); // Theme Panel slug and hook prefix. define( 'WPEX_THEME_PANEL_SLUG', 'wpex-panel' ); define( 'WPEX_ADMIN_PANEL_HOOK_PREFIX', 'theme-panel_page_' . WPEX_THEME_PANEL_SLUG ); // Includes folder. define( 'WPEX_INC_DIR', trailingslashit( WPEX_THEME_DIR ) . 'inc/' ); // Check if js minify is enabled. define( 'WPEX_MINIFY_JS', get_theme_mod( 'minify_js_enable', true ) ); // Theme stylesheet and main javascript handles. define( 'WPEX_THEME_STYLE_HANDLE', 'wpex-style' ); define( 'WPEX_THEME_JS_HANDLE', 'wpex-core' ); // Check if certain plugins are enabled. define( 'WPEX_VC_ACTIVE', class_exists( 'Vc_Manager', false ) ); define( 'WPEX_WPML_ACTIVE', class_exists( 'SitePress', false ) ); define( 'WPEX_POLYLANG_ACTIVE', class_exists( 'Polylang', false ) ); /** * Register autoloader. */ require_once trailingslashit( WPEX_THEME_DIR ) . 'inc/autoloader.php'; /** * All the magic happens here. */ if ( class_exists( 'TotalTheme\Initialize' ) ) { TotalTheme\Initialize::instance(); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件