wxr_category_description( WP_Term $category )

Outputs a category_description XML tag from a given category object.


Parameters

$category WP_Term Required
Category Object.

Top ↑

Source

File: wp-admin/includes/export.php. View all references

function wxr_category_description( $category ) {
	if ( empty( $category->description ) ) {
		return;
	}

	echo '<wp:category_description>' . wxr_cdata( $category->description ) . "</wp:category_description>\n";
}


Top ↑

Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes

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