这个postbox
类硬编码到do_meta_boxes()
负责呈现元框的函数,不能通过过滤器自定义。因此,我想最好的办法是使用javascript删除它。这应该可以做到:
functions.php
add_action(\'admin_init\', \'wpse_87339_admin_init\');
function wpse_87339_admin_init() {
wp_enqueue_script(\'wpse_87339_admin\', get_stylesheet_directory_uri() . \'/js/admin.js\', array(\'jquery\'));
}
js/admin.js
jQuery(document).ready(function($) {
// Remove all .postbox classes from sidebar
$(\'#side-sortables .postbox\').removeClass(\'postbox\');
// Remove .postbox from specific metabox (page attributes)
$(\'#pageparentdiv\').removeClass(\'postbox\');
});