the_archive_description( string $before = , string $after =  )

Displays category, tag, term, or author description.

Description

See also

Parameters

$beforestringoptional
Content to prepend to the description.

Default:''

$afterstringoptional
Content to append to the description.

Default:''

Source

function the_archive_description( $before = '', $after = '' ) {
	$description = get_the_archive_description();
	if ( $description ) {
		echo $before . $description . $after;
	}
}

Changelog

VersionDescription
4.1.0Introduced.

User Contributed Notes

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