是-您需要稍微修改版本的this answer.
add_action( \'add_meta_boxes_post\', \'wpse39446_add_meta_boxes\' );
function wpse39446_add_meta_boxes( $post ) {
if( \'mycpt\' == get_post_type($post) ){
remove_meta_box( \'authordiv\', \'mycpt\', \'core\' );
add_meta_box( \'authordiv\', __(\'Team Member\',\'wpse39446_domain\'), \'post_author_meta_box\', \'mycpt\', \'advanced\', \'high\' );
}
}
Note: 如果要对非核心元盒执行此操作,则需要通过指定更高的优先级来确保在添加元盒后调用回调。