要在WordPress中添加自定义文章类型,需要在functions.php或一个自定义插件中添加代码。
以下是代码示例:
function create_post_type() {
register_post_type( 'books',
array(
'labels' => array(
'name' => __( 'Books' ),
'singular_name' => __( 'Book' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'books'),
)
);
}
add_action( 'init', 'create_post_type' );
这段代码将创建一个名为“书”的自定义文章类型,并在前台显示slug为“books”。
注意事项: