WordPress中,分类页面,我们经常需要输出分类名称、ID以及URL等信息,那么我们可以使用get_category()函数来实现:
分类name测试:<?php echo get_category($cat) ->name;?>
分类ID测试:<?php echo get_category($cat) ->term_id;?>
分类links测试:<?php echo get_category_link( get_category($cat) ->term_id );?>
分类法测试:<?php echo get_category($cat) ->taxonomy;?>
get_category()函数用于获取分类对象:
get_category( int|object $category, string $output=OBJECT, string $filter='raw'
函数参数
$category
整数或对象
分类的ID或分类对象
$output
字符串,默认值:OBJECT
返回的数据类型,默认返回对象,可选值:
- OBJECT:默认值,以对象的形式返回数据;
- ARRAY_A:以关联数组的形式返回数据;
- ARRAY_N:以数字数组的形式返回数据。
$filter
字符串,默认值:raw
对分类使用函数sanitize_term进行字段过滤
函数返回值
WP_Term Object
(
[term_id] => 分类ID
[name] => 分类标题
[slug] => slug
[term_group] => 0
[term_taxonomy_id] => 1
[taxonomy] => category
[description] => 分类描述
[parent] => 0
[count] => 22
[filter] => raw
[cat_ID] => 1
[category_count] => 22
[category_description] => 分类描述
[cat_name] => 分类标题
[category_nicename] => slug
[category_parent] => 0
)
get_category()函数位于:wp-includes/category.php
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:WordPress 获取分类名称、ID、链接URL等方法 get_category()函数使用示例
文章链接:https://www.qqhgg.com/134.html
该作品系作者结合个人学习经验及互联网相关知识整合。如若侵权请通过投诉通道提交信息,我们将按照规定及时处理。