wxr_cdata( string $str )

Wrap given string in XML CDATA tag.


Description Description


Parameters Parameters

$str

(string) (Required) String to wrap in XML CDATA tag.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: wp-admin/includes/export.php

	function wxr_cdata( $str ) {
		if ( ! seems_utf8( $str ) ) {
			$str = utf8_encode( $str );
		}
		// $str = ent2ncr(esc_html($str));
		$str = '<![CDATA[' . str_replace( ']]>', ']]]]><![CDATA[>', $str ) . ']]>';

		return $str;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.