wxr_tag_description( WP_Term $tag )
Output a tag_description XML tag from a given tag object
Parameters
- $tag
-
(WP_Term) (Required) Tag Object
Source
File: wp-admin/includes/export.php
function wxr_tag_description( $tag ) { if ( empty( $tag->description ) ) { return; } echo '<wp:tag_description>' . wxr_cdata( $tag->description ) . "</wp:tag_description>\n"; }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |