如果您的目标是添加all post types,然后您可以使用以下命令获取post类型数组:
$post_types = get_post_types( array(\'public\' => true) );
或者为WP核心帖子类型或自定义帖子类型添加参数:
// only WP core post types
$post_types = get_post_types( array(\'public\' => true, \'_builtin\' => true) );
// only custom post types
$post_types = get_post_types( array(\'public\' => true, \'_builtin\' => false) );
使用方法如下:
add_meta_box(
\'custom_meta_box\', // $id
\'Custom Meta Box\', // $title
\'show_custom_meta_box\', // $callback
$post_types,
\'normal\', // $context
\'high\' // $priority
);