Parsed: 110320
<?php /** * WordPress Export Administration API * * @package WordPress * @subpackage Administration */ /** * Version number for the export format. * * Bump this when something changes that might affect compatibility. * * @since 2.5.0 */ define( 'WXR_VERSION', '1.2' ); /* function export_wp() – Generates the WXR export file for download. */ /* function wxr_cdata() – Wrap given string in XML CDATA tag. */ /* function wxr_site_url() – Return the URL of the site */ /* function wxr_cat_name() – Output a cat_name XML tag from a given category object */ /* function wxr_category_description() – Output a category_description XML tag from a given category object */ /* function wxr_tag_name() – Output a tag_name XML tag from a given tag object */ /* function wxr_tag_description() – Output a tag_description XML tag from a given tag object */ /* function wxr_term_name() – Output a term_name XML tag from a given term object */ /* function wxr_term_description() – Output a term_description XML tag from a given term object */ /* function wxr_term_meta() – Output term meta XML tags for a given term object. */ /* function wxr_authors_list() – Output list of authors with posts */ /* function wxr_nav_menu_terms() – Output all navigation menu terms */ /* function wxr_post_taxonomy() – Output list of taxonomy terms, in XML tag format, associated with a post */ /* function wxr_filter_postmeta() – */