Yu可以使用以下代码创建自定义帖子类型
function create_post_type()
{
register_post_type(\'Custom_post_type_1\',
array(
\'labels\' =>
array(
\'name\' => __(\'Games\'),
\'singular_name\' => __(\'Game\')
),
\'public\' => true,
\'menu_position\'=> 5,
\'rewrite\' => array(
\'slug\'=>\'CPT1\'
),
\'support\' => array(\'comments\',\'author\')
)
);
}
add_action(\'init\',\'create_post_type\');