0

如何在 wordpress 中使用其类别创建自定义帖子类型

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

4

1 回答 1

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, ) );
?>
于 2013-08-07T15:59:19.967 回答