register_post_type()
有一个名为\'register_meta_box_cb\'
. 将其设置为有效回调,则仅当它为该帖子类型的编辑屏幕编译元框时,才会调用该函数。类似这样:
register_post_type( \'foo\', array(
\'public\' => true,
\'label\' => \'foo\',
\'register_meta_box_cb\' => \'bar\',
));
function bar(){
add_meta_box(\'blah\', \'blah\', /* etc */ );
}