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

    (@wpallimport)

    Hi marshall92,

    You can add this code to the function editor:

    add_filter('wp_all_export_is_wrap_value_into_cdata', 'wpae_wp_all_export_is_wrap_value_into_cdata', 10, 3);
    
    function wpae_wp_all_export_is_wrap_value_into_cdata( $is_wrap_into_cdata, $value, $element_name ) {
    	return in_array($element_name, array('time_zone')) ? false : true;
    }

    In this example it will remove the CDATA tags from the time_zone element. You’ll need to use WP All Export v1.0.6 RC2 or higher for this to work. You can download it here: https://www.dropbox.com/s/zrjzxecznecivhl/wp-all-export_1.0.6_RC3.zip?dl=0

    Let us know if you run in to any issues.

Viewing 1 replies (of 1 total)

The topic ‘inside the tag’ is closed to new replies.