Title: remove   from export files
Last modified: August 31, 2016

---

# remove from export files

 *  Resolved [axelmktg](https://wordpress.org/support/users/axelmktg/)
 * (@axelmktg)
 * [10 years ago](https://wordpress.org/support/topic/remove-from-export-files/)
 * Hello,
 * I need to remove <! [CDATA […]]> from all of the xml files created by WP All 
   Export, is this possible?
 * Axel.
 * [https://wordpress.org/plugins/wp-all-export/](https://wordpress.org/plugins/wp-all-export/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [WP All Import](https://wordpress.org/support/users/wpallimport/)
 * (@wpallimport)
 * [10 years ago](https://wordpress.org/support/topic/remove-from-export-files/#post-7412993)
 * Hey Axel.
 * We’ve added a new filter in the latest beta version that will allow you to remove
   all of the CDATA tags. You can get that version here: [https://downloads.wordpress.org/plugin/wp-all-export.zip](https://downloads.wordpress.org/plugin/wp-all-export.zip)
 * And here’s the code snippet you’ll need to add to your themes functions.php file:
 *     ```
       add_filter('wp_all_export_is_wrap_value_into_cdata', 'wpae_is_wrap_value_into_cdata', 10, 3);
       function wpae_is_wrap_value_into_cdata($is_wrap_into_cdata, $value, $element_name){
       	return false;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘remove from export files’ is closed to new replies.

 * ![](https://ps.w.org/wp-all-export/assets/icon-256x256.png?rev=2570162)
 * [WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel](https://wordpress.org/plugins/wp-all-export/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-all-export/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-all-export/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-all-export/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-all-export/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-all-export/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [WP All Import](https://wordpress.org/support/users/wpallimport/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/remove-from-export-files/#post-7412993)
 * Status: resolved