获取WordPress的各级分类目录get_the_category()函数
May022014
the_category(‘,’)能调用日志的所在的所有类别(逗号是用来区分类别名),但有时候只想调用某一子分类即子目录,这时就可以用get_the_category()函数
显示第一个类别的名称
1 2 3 4 | <?php $category = get_the_category(); echo $category[0]->cat_name; ?> |
显示第一个类别的连接
1 2 3 4 5 6 | <?php $category = get_the_category(); if($category[0]){ echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>'; } ?> |
返回对象的成员介绍
cat_ID
类别编号,存储在term_id字段
cat_name
类别名称,存储在name字段
category_nicename
别名,存储在slug字段
category_description
类别描述,存储在description字段
category_parent
父类别编号,没有父类的为0,存储在parent字段
category_count
类别使用的数量,存储在count字段
源码位置
wp-includes/category-template.php
本文固定链接: http://www.ouchaoman.com/2014/05/02/get_the_category/ | 欧阳博客