Wordpress:选择帖子的子类别,并在主类别上显示

时间:2014-12-20 02:12:29

标签: wordpress post categories

我在wordpress上有这些类别:

  - Main Category
     - Sub Category
  - Another Category

然后我创建一个仅包含" Sub Category"地选择。

当我显示"主要类别"内容,帖子没有出现,那么有没有解决方案来显示主要类别的所有子类别帖子?

感谢'!小号

1 个答案:

答案 0 :(得分:1)

我认为你可以使用这个功能:

wp_list_categories( $args );

$args = array(
'show_option_all'    => '',
'orderby'            => 'name',
'order'              => 'ASC',
'style'              => 'list',
'show_count'         => 0,
'hide_empty'         => 1,
'use_desc_for_title' => 1,
'child_of'           => 0,
'feed'               => '',
'feed_type'          => '',
'feed_image'         => '',
'exclude'            => '',
'exclude_tree'       => '',
'include'            => '',
'hierarchical'       => 1,
'title_li'           => __( 'Categories' ),
'show_option_none'   => __( 'No categories' ),
'number'             => null,
'echo'               => 1,
'depth'              => 0,
'current_category'   => 0,
'pad_counts'         => 0,
'taxonomy'           => 'category',
'walker'             => null
);

链接:http://codex.wordpress.org/Template_Tags/wp_list_categories