wordpress仅在子类别上显示帖子

时间:2013-09-12 08:16:41

标签: php wordpress

嗨我正在使用Wordpress开发网站和自制模板。我有1页显示所有类别的帖子。这就是我想做的事情

  • 主要类别
    • 子类别1
      • post 1
      • subcategory1.2
        • post 1.2.1
        • post 1.2.2
    • subcategory2
    • subcategory3

我使用wp_link_category()来显示类别,我搜索如何显示带有帖子的类别,但问题是。子类别1.2中的帖子也显示在子类别1

  • 主要类别
    • 子类别1
      • post 1
      • post 1.2.1
      • post 1.2.2
      • subcategory1.2
        • post 1.2.1
        • post 1.2.2
    • subcategory2
    • subcategory3

如何从子类别1的子类别1.2中删除帖子? 这是我从stackoverflow复制和粘贴的代码

$categories =  get_categories('child_of=4');  
foreach  ($categories as $category) {
    //Display the sub category information using $category values like $category->cat_name
    echo '<h2>'.$category->name.'</h2>';
    echo '<ul>';

    foreach (get_posts('cat='.$category->term_id) as $post) {
        setup_postdata( $post );
        echo '<li><a href="'.get_permalink($post->ID).'">'.get_the_title().'</a></li>';   
    }  
    echo '</ul>';
}

我希望你能理解我糟糕的英语。

1 个答案:

答案 0 :(得分:0)

试试这个:

$args = array(
  'child_of' => 4,
  'parent' => 4
  );

$categories =  get_categories( $args );