几个月前,我问了一个类似的问题:Is it possible to remove the main rich Text box editor? 并得到以下答案:
function remove_pages_editor(){
remove_post_type_support( \'page\', \'editor\' );
}
add_action( \'init\', \'remove_pages_editor\' );
此代码从中删除编辑器all pages. 我可以从特定页面(通过帖子ID)删除if吗?谢谢