如何删除自定义帖子类型的所有元框?

时间:2015-02-02 14:22:15

标签: php wordpress

什么是在Wordpress中删除特定帖子类型的所有元框的有效方法?

我发现的唯一一个删除metabox的解决方案似乎是remove_meta_box函数,它需要删除元数据的id。我可以删除所有这样的默认元变量,它会有点繁琐但不是不可能甚至很难。

但是,如何在其他地方不断删除元框添加的插件或主题功能呢?那些是动态的和不可预测的,也许我可以可靠地获得自定义帖子类型编辑页面的元框的摘要,也许可以从那里工作?

谢谢, 乙

2 个答案:

答案 0 :(得分:2)

您可以通过以下两种方式之一完成此操作 -

  1. 在没有任何检查的情况下残酷删除所有元框。
  2. 单独循环浏览每个元数据,这样您就可以检查ID并保留一些,如果您愿意的话。
  3. 我个人的偏好是方法2,尽管与更残酷的方法1相比,当然会有一些开销。

    使用PHP microtime,速度记录如下 -

    • 方法1 - 0(非常非常快)。
    • 方法2 - 0.00099992752075195(相当快,但明显较慢)。

    方法1 - 快速而残酷 -

    add_action('add_meta_boxes', 'my_remove_meta_boxes1', 99, 2);
    function my_remove_meta_boxes1($post_type, $post){
    
        global $wp_meta_boxes;
    
        /** Simply unset all of the metaboxes, no checking */
        unset($wp_meta_boxes[$post_type]);
    
    }
    

    方法2 - 慢而小心 -

    add_action('add_meta_boxes', 'my_remove_meta_boxes2', 99, 2);
    function my_remove_meta_boxes2($post_type, $post){
    
        /** Check the post type (remove if you don't want/need) */
        if(!in_array($post_type, array(
                                     'post',
                                     'page'
                                 ))) :
            return false;
        endif;
    
        global $wp_meta_boxes;
    
        /** Create an array of meta boxes exceptions, ones that should not be removed (remove if you don't want/need) */
        $exceptions = array(
            'postimagediv'
        );
    
        /** Loop through each page key of the '$wp_meta_boxes' global... */
        if(!empty($wp_meta_boxes)) : foreach($wp_meta_boxes as $page => $page_boxes) :
    
                /** Loop through each contect... */
                if(!empty($page_boxes)) : foreach($page_boxes as $context => $box_context) :
    
                        /** Loop through each type of meta box... */
                        if(!empty($box_context)) : foreach($box_context as $box_type) :
    
                                /** Loop through each individual box... */
                                if(!empty($box_type)) : foreach($box_type as $id => $box) :
    
                                        /** Check to see if the meta box should be removed... */
                                        if(!in_array($id, $exceptions)) :
    
                                            /** Remove the meta box */
                                            remove_meta_box($id, $page, $context);
                                        endif;
    
                                    endforeach;
                                endif;
    
                            endforeach;
                        endif;
    
                    endforeach;
                endif;
    
            endforeach;
        endif;
    
    }
    

答案 1 :(得分:0)

大卫给了您很好的选择。我只是将以下内容用于您的特定用例:(将your_custom_post_type替换为CPT的名称)

add_action( 'add_meta_boxes', 'test_remove_metaboxes', 5 ); // hook early and remove all metaboxes

function test_remove_metaboxes(){
    global $wp_meta_boxes;
    global $post;
    $current_post_type = get_post_type($post);
    if($current_post_type == 'your_custom_post_type') {
        $publishbox = $wp_meta_boxes['your_custom_post_type']['side']['core']['submitdiv'];
        $wp_meta_boxes = array();
        $wp_meta_boxes['your_custom_post_type'] = array(
            'side' => array('core' => array('submitdiv' => $publishbox))
          );
    }
}

然后您可以根据需要添加自己的元框。