您可以删除默认的post tags元框,然后将其再次添加到所需位置,例如:
add_action( \'add_meta_boxes\', \'move_tags_metabox_location\', 0 );
function move_tags_metabox_location(){
global $wp_meta_boxes;
unset( $wp_meta_boxes[\'post\'][\'side\'][\'core\'][\'tagsdiv-post_tag\'] );
add_meta_box( \'tagsdiv-post_tag\', \'Tags\', \'post_tags_meta_box\', \'post\', \'normal\', \'core\', array( \'taxonomy\' => \'post_tag\' ));
}