WordPress获取指定分类和子分类文章总数量

之前悟空搜有记录过一篇 WordPress获取全站数据的文章:

[xx_insert_post station_article=”1560″]

还有获取指定分类文章数量的文章:

[xx_insert_post station_article=”1412″]

今天这篇文章主要是写Wordpress如何获取指定分类和子分类的文章数量。

下面我们来看一下相关实现办法。
首先,定义实现函数,将以下php代码复制到当前主题的functions.php中:


1
2
3
4
5
6
7
8
9
10
11
12
13
function aye_get_cat_postcount($id) {
 // 获取当前分类信息
 $cat = get_category($id);
 // 当前分类文章数
 $count = (int) $cat->count;
 // 获取当前分类所有子孙分类
 $tax_terms = get_terms('category', array('child_of' => $id));
 foreach ($tax_terms as $tax_term) {
  // 子孙分类文章数累加
  $count +=$tax_term->count;
 }
 return $count;
}

使用方法

在需要显示文章数量的地方加入下面代码即可。


1
<?php echo aye_get_cat_postcount(123); ?>

扫码关注wp悟空搜

精选优质免费WordPress主题模板,分享最新WordPress实用建站教程!

记住我们的网址:ztJun.com

原文链接:https://xiaohost.com/1574.html,转载请注明出处。
0

评论0

请先