wordpress 分类文章数量 获取

2019年12月23日17:22:28 发表评论 热度347 ℃

wordpress分类目录下获取文章数量,有的时候还是很需要的,例如,AA分类目录页面上显示该分类拥有128篇文章,那么,下载的代码,可以直接获取到,思路是,先获取分类id,通过分类id查询文章数量,好了,更深奥的不说了,直接贴代码!

 wordpress 分类文章数量 获取
  1. <?php
  2.     global $wp_query;
  3.     $cat_ID = get_query_var('cat');
  4.     $category = get_category($cat_ID);
  5.     echo $category->count;
  6. ?>

以上代码中,最后的count,也可以换成slug,就是输出分类别名。

get_cat_ID()    根据分类名称获取分类ID

get_cat_name()    根据分类ID获取分类名称

get_category_link()    根据分类ID获取分类的链接URL

瓜皮猪

发表评论

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