如何在wordpress中使用其类别
创建自定义帖子类型我想在我的网站上创建一个新闻栏目(与帖子相同),但我想创建自己的新闻栏目,其帖子类型为新闻。请提出建议。
答案 0 :(得分:0)
试试这个:
<?php
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'news',
array(
'labels' => array(
'name' => __( 'News' ),
'singular_name' => __( 'News' )
),
'capability_type' => 'post',
'public' => true,
'supports' => array(
'title',
'editor',
'excerpt',
'trackbacks',
'custom-fields',
'revisions',
'thumbnail',
'author',
'page-attributes',
)
)
);
}
register_taxonomy( 'news_category', 'news',array('label' => __( 'Categories' ),'rewrite' => array( 'slug' => 'news_category' ),'hierarchical' => true, ) );
?>