tag_description() WP 1.0
Retrieve tag description.
Works based on: term_description()
No Hooks.
Return
String. Tag description, if available.
Usage
tag_description( $tag );
- $tag(int)
- Tag ID.
Default: current tag ID
Changelog
Since 2.8.0 | Introduced. |
Code of tag_description() tag description WP 5.6
function tag_description( $tag = 0 ) {
return term_description( $tag );
}