摘要:调用WordPress分类归档文章时,有时我们需要排除掉子分类的文章,而默认的wordpress分类页面中会默认显示分类…
调用WordPress分类归档文章时,有时我们需要排除掉子分类的文章,而默认的wordpress分类页面中会默认显示分类内所有文章,如果我们排除子分类文章,可以通过下面的代码来实现功能。
1
2
3
4
5
6
7
|
//在主题文章归档模板主循环:
<?php while ( have_posts() ) : the_post(); ?>
<?php endwhile; ?>
//上面添加:
<?php query_posts(array(‘category__in’ => array(get_query_var(‘cat’)))); ?>
//下面添加:
<?php wp_reset_query(); ?>
|
来源:http://www.wazhuti.com/3642.html