WordPress 分类归档中排除子分类文章 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

WordPress 分类归档中排除子分类文章 – 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(); ?>

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: