wordpress category.php,WordPress函数get_category()

本文详细介绍了WordPress中的`get_category`函数,该函数用于根据分类ID或对象获取分类数据。函数接受三个参数:$category(必需)、$output(可选)和$filter(可选),并返回经过过滤和兼容性处理的分类数据。如果分类ID不存在,将返回null。适用于需要处理WordPress分类信息的开发者。
摘要由CSDN通过智能技术生成

用法:

参数:

$category

(integer|object) (必填) 分类ID

默认值: None

$output

(string) (可选) 常量对象、数组或数组

默认值: OBJECT

$filter

(string) (可选) 默认为raw或不应用WordPress定义的过滤器。

默认值: 'raw'

源文件:

/**

* Retrieves category data given a category ID or category object.

*

* If you pass the $category parameter an object, which is assumed to be the

* category row object retrieved the database. It will cache the category data.

*

* If you pass $category an integer of the category ID, then that category will

* be retrieved from the database, if it isn't already cached, and pass it back.

*

* If you look at get_term(), then both types will be passed through several

* filters and finally sanitized based on the $filter parameter value.

*

* The category will converted to maintain backwards compatibility.

*

* @since 1.5.1

*

* @param int|object $category Category ID or Category row object

* @param string $output Optional. Constant OBJECT, ARRAY_A, or ARRAY_N

* @param string $filter Optional. Default is raw or no WordPress defined filter will applied.

* @return object|array|WP_Error|null Category data in type defined by $output parameter.

* WP_Error if $category is empty, null if it does not exist.

*/

function get_category( $category, $output = OBJECT, $filter = 'raw' ) {

$category = get_term( $category, 'category', $output, $filter );

if ( is_wp_error( $category ) )

return $category;

_make_cat_compat( $category );

return $category;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值