wordpress获取当前分类的ID
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress获取当前分类的ID相关的知识,希望对你有一定的参考价值。
参考技术A 有时我们在定制一些比较特别的需求的时候,需要获取分类的ID,以满足特别的需要,下面列举一下获取分类ID的方法。如果是分类页面,系统默认有个变量$cat,就是分类的ID,但是只能在分类页面使用
在page页面使用
主题中使用自定义字段显示
直接循环使用
get_the_category的返回值为二维数组
cat_ID – 分类 ID ,
cat_name – 分类名 ,
category_nicename – 别名 ,
category_description – 分类描述 ,
category_parent – 父分类 ID ,
category_count – 包含文章数量。
Wordpress 获取 custom post type 的当前文章 分类信息
// knowledgebase_category 为 custom post type taxonomy
$terms = get_the_terms( get_the_ID() , ‘knowledgebase_category‘ ); var_dump($terms);
以上是关于wordpress获取当前分类的ID的主要内容,如果未能解决你的问题,请参考以下文章