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

Displays category, tag, term, or author description.


Description

Top ↑

See also


Top ↑

Parameters

$before string Optional
Content to prepend to the description.

Default: ''

$after string Optional
Content to append to the description.

Default: ''


Top ↑

Source

File: wp-includes/general-template.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
4.1.0 Introduced.

Top ↑

User Contributed Notes

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