后台添加book分类,在functions.php添加如下代码

add_action( 'init', 'create_post_type' );
function create_post_type() {
    register_post_type( 'book',
        array(
            'labels' => array(
                'name' => __( 'book' ),
                'singular_name' => __( 'book' )
            ),
            'public' => true,
            'has_archive' => true,
        )
    );
}
作者 铁血 汉子 2018年1月6日
2024/05/05/02:53:28pm 2018/1/6/2:51:03
0 1892