有一个add_meta_boxes
激发您可以挂钩的函数-每当呈现“编辑帖子”页面时,它都会激发。
此时,您可以使用get_the_ID()
. 然后,您可以将其与要删除帖子编辑器的ID进行比较:
function remove_pages_editor(){
if(get_the_ID() == 23) {
remove_post_type_support( \'post\', \'editor\' );
} // end if
} // end remove_pages_editor
add_action( \'add_meta_boxes\', \'remove_pages_editor\' );