我有这个密码
function add_custom_meta_box() {
add_meta_box(
\'custom_meta_box\', // $id
\'Custom Meta Box\', // $title
\'show_custom_meta_box\', // $callback
\'page\', // $page
\'normal\', // $context
\'high\'); // $priority
}
add_action(\'add_meta_boxes\', \'add_custom_meta_box\');
我想在此代码中添加更多的帖子类型,如page、post、custom\\u post\\u type \'page\', // $page
我应该如何重写代码?