WordPress分类页面中如何排除子分类文章

默认 WordPress 会在分类页面显示子分类文章,如果只想显示该分类的文章,而不显示子分类中的文章,可以通过下面的代码实现。

在主题文章归档模板主循环:

<?php while ( have_posts() ) : the_post(); ?>
<?php endwhile; ?>

在上面添加:

<?php query_posts(array('category__in' => array(get_query_var('cat')))); ?>

下面添加:

<?php wp_reset_query(); ?>

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注




Enter Captcha Here :