如何从管理菜单中删除插件编辑器

时间:2011-10-15 作者:Gregg Franklin

我有从外观菜单中删除编辑器的代码。但我找不到从插件中删除编辑器的方法。

    // Remove Editor from Apperance Menu
function remove_editor_menu() {
  remove_action(\'admin_menu\', \'_add_themes_utility_last\', 101);
    }
add_action(\'_admin_menu\', \'remove_editor_menu\', 1);

3 个回复
SO网友:t31os

正确的方法是在配置文件中使用disallow file editing常量。

define( \'DISALLOW_FILE_EDIT\', true );

http://codex.wordpress.org/Editing_wp-config.php#Disable_the_Plugin_and_Theme_Editor

SO网友:Wyck

Here ya go,

   function my_remove_menu_elements()
    {
        remove_submenu_page( \'plugins.php\', \'plugin-editor.php\' );
    }
    add_action(\'admin_init\', \'my_remove_menu_elements\');
SO网友:Mohit Bumb

   function remove_plugin_editor()
    {
        remove_submenu_page( \'plugins.php\', \'plugin-editor.php\' );
    }
    add_action(\'admin_init\', \'remove_plugin_editor\');
有关it的更多信息,请访问http://codex.wordpress.org/Function_Reference/remove_submenu_page

结束

相关推荐