category_description

函数
category_description ( $category = 0 )
参数
  • (int) $category Optional. Category ID. Defaults to the current category ID.
    Required:
返回值
  • (string) Category description, if available.
定义位置
相关方法
term_descriptiontag_descriptionthe_author_descriptionthe_archive_descriptioncategory_exists
引入
1.0.0
弃用
-

category_description: 这个函数用来获取一个给定类别的描述。它接受一个参数,即类别ID或slug。它返回该类别的描述。

检索类别描述。

function category_description( $category = 0 ) {
	return term_description( $category );
}

常见问题

FAQs
查看更多 >