Viewing 1 replies (of 1 total)
  • Plugin Author WP All Import

    (@wpallimport)

    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.www.ads-software.com/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.