这里有一种替代方法,不是删除编辑器,而是将其隐藏起来,不供非管理员使用。
我宁愿躲起来,也不愿搬走。我相信这两种情况都有。
//Hide New Post Options from all except Administrator
function hide_post_page_options()
{
if ( !current_user_can( \'administrator\' ) )
return;
$hide_post_options = \'<style type="text/css"> .postarea { display: none; }</style>\';
print($hide_post_options);
}
add_action( \'admin_head-post-new.php\', \'hide_post_page_options\' );