您要查找的回调是post_categories_meta_box
我们可以通过自定义回调来使用它。
// Add your custom meta box.
function your_custom_meta_box() {
add_meta_box( \'your-custom-meta-box\', \'Custom Meta Box\', \'my_taxonomy_meta_box_cb\', \'post\', \'side\', \'high\', null );
}
add_action( \'add_meta_boxes\', \'your_custom_meta_box\' );
// Our custom callback.
function my_taxonomy_meta_box_cb( $post, $box ) {
// Pass in the taxonomy we\'d like to use.
$box[ \'args\' ][ \'taxonomy\' ] = \'listing_category\';
post_categories_meta_box( $post, $box );
}
感谢@birgire指出了如何避免重复代码。:-)