get_the_category_by_id

函数
get_the_category_by_id ( $cat_id )
参数
  • (int) $cat_id Category ID.
    Required:
返回值
  • (string|WP_Error) Category name on success, WP_Error on failure.
定义位置
相关方法
get_the_category_listget_the_categoryget_the_category_rssthe_category_idget_the_author_id
引入
0.71
弃用
-

get_the_category_by_id: 这个函数检索一个特定文章ID的类别对象数组。它需要一个参数:文章的ID。它返回一个WP_Term对象的数组。

根据类别ID检索类别名称。

function get_the_category_by_ID( $cat_id ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	$cat_id   = (int) $cat_id;
	$category = get_term( $cat_id );

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

	return ( $category ) ? $category->name : '';
}

常见问题

FAQs
查看更多 >