我是靠谱客的博主 淡然超短裙,最近开发中收集的这篇文章主要介绍wordpress category.php,WordPress函数get_category(),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

用法:

参数:

$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;

}

最后

以上就是淡然超短裙为你收集整理的wordpress category.php,WordPress函数get_category()的全部内容,希望文章能够帮你解决wordpress category.php,WordPress函数get_category()所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部