wordpress / latest / functions / wxr_cdata.html

wxr_cdata( string $str ): string

Wraps given string in XML CDATA tag.

Parameters

$str string Required
String to wrap in XML CDATA tag.

Return

string

Source

File: wp-admin/includes/export.php. View all references

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;
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
2.1.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wxr_cdata