自定义帖子类型使用二十五个 WordPress 主题

你可以使用该功能的任何名称。

function custom_postype(){
    register_post_type('cus_post',array(

        'labels'=>array(
            'name'=>'khaiyam'// Use any name you want to show in menu for your users
            ),
        'public'=>true,// **Must required 
        'supports'=>array('title','editor','thumbnail')// Features you want to provide on your posts
        )); 
}
add_action('after_setup_theme','custom_postytpe'); 

要么

add_action('init','custom_postytpe');

你可以使用你想要的任何钩子,但当然它们有不同的含义和用途。

StackOverflow 文档