wpseek.com
WordPress开发者和主题制作者的搜索引擎



tag_description › WordPress Function

Since2.8.0
已弃用n/a
tag_description ( $tag = 0 )
参数:
  • (int) $tag Optional. Tag ID. Defaults to the current tag ID.
    Required: No
    默认:
返回:
  • (string) Tag description, if available.
定义在:
文档:

Retrieves tag description.



源码

function tag_description( $tag = 0 ) {
	return term_description( $tag );
}