文件操作 - theme.php
返回文件管理
返回主菜单
删除本文件
文件: /var/www/ltlcompare.com/wp-content/themes/ltl-compare/functions/theme.php
编辑文件内容
<?php /** * Theme setup * * @package centrmed */ add_action( 'after_setup_theme', function () { if ( ! class_exists( '\Carbon_Fields\Carbon_Fields' ) ) { $carbon_fields_path = get_template_directory() . '/plugins/autoload.php'; if ( file_exists( $carbon_fields_path ) ) { require_once $carbon_fields_path; \Carbon_Fields\Carbon_Fields::boot(); } else { add_action( 'admin_notices', function () { ?> <div class="notice notice-error"> <p><?php esc_html_e( 'Carbon Fields need!', DOMAIN ); ?></p> </div> <?php } ); } } } );
修改文件时间
将文件时间修改为当前时间的前一年
删除文件