wordpress主题函数get_the_category()详解使用

函数 get_the_category() 是获取与查询参数相匹配的类别对象,用法如下:

案例一:显示类别的图片

<?php
foreach((get_the_category()) as $category) {
    echo '<img src="http://www.2zzt.com/images/' . $category->cat_ID . '.jpg" alt="' . $category->cat_name . '" />';
}
?>

案例二:显示第一个类别的名称

<?php
$category = get_the_category();
echo $category[0]->cat_name;
?>

案例三:显示第一个类别的连接

<?php
$category = get_the_category();
    if($category[0]){
    echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>';
    }
?>

案例四:获取指定文章编号的类别信息

<?php
global $post;
$categories = get_the_category($post->ID);
var_dump($categories);
?>

返回对象的成员:

cat_ID:类别编号,存储在term_id字段;

cat_name:类别名称,存储在name字段;

category_nicename:别名,存储在slug字段;

category_description:类别描述,存储在description字段;

category_parent:父类别编号,没有父类的为0,存储在parent字段;

category_count:类别使用的数量,存储在count字段.

——转摘自《爱找主题》

这个函数主要是获取文章对应的分类情况的,wordpress的分类有个比较特殊的,就是一个文章可以放置在多个分类下面。这就导致get_the_category()对应的可能是个数组Array。一般情况下,我们只调用一个,但如果您的确有多个调用的需求,那么对应的函数应该是get_the_category_list()。
————————————————
版权声明:本文为CSDN博主「儒爵.CN」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_45578749/article/details/100131680