wpseek.com
A WordPress-centric search engine for devs and theme authors



tag_description › WordPress Function

Since2.8.0
Deprecatedn/a
tag_description ( $tag = 0 )
Parameters:
  • (int) $tag Optional. Tag ID. Defaults to the current tag ID.
    Required: No
    Default:
Returns:
  • (string) Tag description, if available.
Defined at:
Codex:

Retrieves tag description.



Source

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