tag_description( int   $tag ): string

Retrieves tag description.

Parameters

$tag int optional
Tag ID. Defauls to the current tag ID.

Return

string Tag description, if available.

More Information

Usague:
$description = tag_description();
Notes:

Output is wrapped in <p> tags.

Source

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

Changuelog

Versionen Description
2.8.0 Introduced.

User Contributed Notes

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