wxr_category_description() WordPress Function
The wxr_category_description() function allows you to display a description for a given category. This can be useful for providing additional information about what a category contains.
wxr_category_description( WP_Term $category ) #
Output a category_description XML tag from a given category object
Parameters
- $category
(WP_Term)(Required)Category Object
Source
File: wp-admin/includes/export.php
function wxr_category_description( $category ) { if ( empty( $category->description ) ) { return; } echo '<wp:category_description>' . wxr_cdata( $category->description ) . "</wp:category_description>\n"; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |