wxr_term_description( WP_Term $term )

In this article

Outputs a term_description XML tag from a given term object.

Parameters

$termWP_Termrequired
Term Object.

Source

function wxr_term_description( $term ) {
	if ( empty( $term->description ) ) {
		return;
	}

	echo "\t\t<wp:term_description>" . wxr_cdata( $term->description ) . "</wp:term_description>\n";
}

Changelog

VersionDescription
2.9.0Introduced.

User Contributed Notes

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