您可以通过添加按钮add_meta_box 作用
function add_your_meta_box(){
add_meta_box(\'your-metabox-id\', \'Title\', \'function_of_metabox\', \'custom_post_type\', \'side\', \'high\');}
add_action(\'add_meta_boxes\', \'add_your_meta_box\');
function function_of_metabox()
{?>
<input type="submit" class="button button-primary button-large" value="Add New" id="add-new"/>
<?php }
如果添加到多个post类型,则应使用foreach循环。
function add_your_meta_box(){
$types = array("post","page","custom_post_type");
foreach($types as $type){
add_meta_box(\'your-metabox-id\', \'Title\', \'function_of_metabox\', $type, \'side\', \'high\');}
}
add_action(\'add_meta_boxes\', \'add_your_meta_box\');