WordPress主题函数get_the_category_by_ID()知识点

WordPress主题函数get_the_category_by_ID()知识点。 描述: 通过分类id获取分…


Warning: Attempt to read property "post_type" on null in /www/wwwroot/wper.net/wp-content/plugins/wper-meta.php on line 365

WordPress主题函数get_the_category_by_ID()知识点 (https://www.wpmee.com/) WordPress开发教程 第1张

WordPress主题函数get_the_category_by_ID()知识点。

描述:

通过分类id获取分类所有信息

用法:

<?php get_the_category_by_ID( $cat_ID ); ?>

参数:

$cat_ID

(int) (必填) 分类ID

默认值:None

源文件:

/**
 * Retrieve category name based on category ID.
 *
 * @since 0.71
 *
 * @param int $cat_ID Category ID.
 * @return string|WP_Error Category name on success, WP_Error on failure.
 */
function get_the_category_by_ID( $cat_ID ) {
	$cat_ID = (int) $cat_ID;
	$category = get_term( $cat_ID, 'category' );

	if ( is_wp_error( $category ) )
		return $category;

	return ( $category ) ? $category->name : '';
}
类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册