tag_description()
Retrieve tag description.
Uses: 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.9.3
function tag_description( $tag = 0 ) { return term_description( $tag ); }