wxr_cat_name() WordPress Function
The wxr_cat_name() function is used to retrieve the name of a category from a WordPress installation. The name is retrieved from the database and is cached for performance.
wxr_cat_name( WP_Term $category ) #
Output a cat_name XML tag from a given category object
Parameters
- $category
(WP_Term)(Required)Category Object
Source
File: wp-admin/includes/export.php
function wxr_cat_name( $category ) {
if ( empty( $category->name ) ) {
return;
}
echo '<wp:cat_name>' . wxr_cdata( $category->name ) . "</wp:cat_name>\n";
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |