以下内容在功能方面对我有用。php
/**
* [remove_meta_boxes remove the resource type standard meta box from the side sortables in the resource post edit screen
* @return [type] [description]
*/
function remove_meta_boxes(){
remove_meta_box( \'resourcetypesdiv\', \'resource\',\'side\' );
}
add_action( \'admin_menu\', __NAMESPACE__ . \'\\\\remove_meta_boxes\');