我不知道你所说的“未知自定义帖子”是什么意思,但下面是如何将元框添加到许多帖子类型中的:
$post_types = array(
\'post\',
\'page\',
\'my_custom_post_type\',
);
foreach ($post_types as $post_type)
add_meta_box(\'Intro\', __(\'Intro\'), \'my_meta_box\', $post_type, \'normal\', \'high\');
如果您想拥有不同的上下文和/或优先级,您必须在多个调用中完成。
如果我误解了你,请开导我。
// Edit
当然,你可以用另一种方法来做,并排除你所做的文章类型not 想要这个元盒。
$args = array(
\'public\' => true,
);
if (! is_array($post_types = get_post_types($args)))
$post_types = array();
unset($post_types[\'post\']);
unset($post_types[\'attachment\']);
unset($post_types[\'my_custom_post_type\']);
if (count($post_types))
foreach ($post_types as $post_type)
add_meta_box(\'Intro\', __(\'Intro\'), \'my_meta_box\', $post_type, \'normal\', \'high\');
如果这不是你想要的,恐怕我不知道你会满意什么。
您不想指定帖子类型,但想将某些功能绑定到特定的帖子类型。。。