wxr_post_taxonomy() WordPress Function
The wxr_post_taxonomy() function is used to generate a WordPress XML file for a given post type and taxonomy. This function can be used to create an XML file for any custom post type and taxonomy.
wxr_post_taxonomy() #
Output list of taxonomy terms, in XML tag format, associated with a post
Source
File: wp-admin/includes/export.php
function wxr_post_taxonomy() { $post = get_post(); $taxonomies = get_object_taxonomies( $post->post_type ); if ( empty( $taxonomies ) ) { return; } $terms = wp_get_object_terms( $post->ID, $taxonomies ); foreach ( (array) $terms as $term ) { echo "\t\t<category domain=\"{$term->taxonomy}\" nicename=\"{$term->slug}\">" . wxr_cdata( $term->name ) . "</category>\n"; } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |