2016-08-25 79 views

回答

0

这不是您想要移除的meta_box,它是'编辑器',这是帖子的一个功能。你要使用remove_post_type_support()

尝试:

add_action('admin_head', 'custom_remove_editor'); 

function custom_remove_editor() { 
    global $post; 
    $post_id = $post->ID 

    if($post_id == 1 || $post_id == 2 || $post_id == 3) { 
    remove_post_type_support('post', 'editor'); 
    } 
} 

当然,在if()语句中的数字应该与你希望这是取消了对post_ids。

+0

谢谢!我实际上不得不修改代码: add_action('admin_head','custom_remove_editor'); function custom_remove_editor(){ global $ post; $ post_id = $ post-> ID;如果($ post_id == 206 || $ post_id == 232 || $ post_id == 218){ remove_post_type_support('page','editor'); } } – likwidmonster

+0

是的,那太好了。这正是你应该做的。我更新了最后一句,以增加这一变化的清晰度。 – dpruth