【提醒】根据部分站长需求,本站将延期至最晚2024.08.08关闭,如有需要,请尽快下载!,倒计时剩余:计算中...

wordpress教程之 get_the_category()函数详细文档教程

温馨提醒:

部分资源因发布时间久远,如果功能涉及到第三方服务或接口,可能已无法正常使用!PHP推荐使用5.6版本!请仔细甄别!老旧插件不再提供修复及咨询服务。所有Discuz插件模板均在Discuz!X 3.4、Discuz!X 3.2测试,不保证兼容其他版本! 【Discuz插件模板安装教程】

资源类型:wordpress教程


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

说明

获取与查询参数相匹配的类别对象

用法

<?php get_the_category( $id ) ?>
参数

id

(整数) (可选) 文章编号

默认: $post->ID (当前文章的编号)

例子

显示类别的图片

<?php
foreach((get_the_category()) as $category) {
echo ‘<img src=”https://mall.moqu8.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字段

分享到:
赞(1)
魔趣商城是魔趣吧旗下,专业的整站资源和极品模板插件购买下载站,我们提供完善的售后服务,整站安装让你建站更加快捷,只需要几十分钟甚至几分钟,就可以获得一个运营级的完整网站!所有资源由本站技术亲手打造或严格线上测试,保证100%完整、安全、功能完善可直接运营使用!