wxr_term_description( object $term )

Output a term_description XML tag from a given term object


Description Description


Parameters Parameters

$term

(object) (Required) Term Object


Top ↑

Source Source

File: wp-admin/includes/export.php

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.9.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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