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

Displays category, tag, term, or author description.

Description

See also

Parameters

$before string optional
Content to prepend to the description.

Default: ''

$after string optional
Content to append to the description.

Default: ''

Source

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

Changuelog

Versionen Description
4.1.0 Introduced.

User Contributed Notes

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