Remove TEXT EDITOR form page

时间:2017-05-16 作者:Samuel

我正在寻找一种从页面中删除文本编辑器的方法,因为我正在使用Beaver Builder插件(用于构建我的页面)。

就像你在下图中看到的,我有两个标签。我想删除文本编辑器选项卡(红色)。

提前谢谢。

enter image description here

1 个回复
最合适的回答,由SO网友:Abdul Awal Uzzal 整理而成

这个问题有答案here . 我想这对你有用。尝试后告诉我

add_action(\'init\', \'init_remove_support\',100);
function init_remove_support(){
    $post_type = \'page\';
    remove_post_type_support( $post_type, \'editor\');
}

结束

相关推荐