如何在wordpress中创建带有类别的自定义帖子类型?

时间:2013-08-07 15:57:57

标签: php wordpress

如何在wordpress中使用其类别

创建自定义帖子类型

我想在我的网站上创建一个新闻栏目(与帖子相同),但我想创建自己的新闻栏目,其帖子类型为新闻。请提出建议。

1 个答案:

答案 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, ) );
?>