文件操作 - autoloader.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/creatormedianetwork/public_html/wp-content/plugins/embedpress/autoloader.php
编辑文件内容
<?php /** * @package EmbedPress * @author EmbedPress <help@embedpress.com> * @copyright Copyright (C) 2023 WPDeveloper. All rights reserved. * @license GPLv3 or later * @since 1.0.0 */ use EmbedPress\AutoLoader; defined('ABSPATH') or die("No direct script access allowed."); $autoLoaderFullClassName = EMBEDPRESS_NAMESPACE . '\\' . EMBEDPRESS_AUTOLOADER_NAME; if ( ! defined('EMBEDPRESS_IS_LOADED') || ! class_exists($autoLoaderFullClassName)) { define('EMBEDPRESS_IS_LOADED', true); if ( ! class_exists($autoLoaderFullClassName)) { require_once EMBEDPRESS_PATH_CORE . EMBEDPRESS_AUTOLOADER_NAME . '.php'; } AutoLoader::register(str_replace('\\', "", EMBEDPRESS_NAMESPACE), EMBEDPRESS_PATH_CORE); // Register the src directory for new structure AutoLoader::register('EmbedPress\\Src', EMBEDPRESS_PATH_BASE . 'src/'); } unset($autoLoaderFullClassName);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件