tag_description( int $tag ): string

Retrieves tag description.

Parameters

$tagintoptional
Tag ID. Defaults to the current tag ID.

Return

string Tag description, if available.

More Information

Usage:
$description = tag_description();
Notes:

Output is wrapped in <p> tags.

Source

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

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.