WP_Ajax_Response::send()publicWP 2.1.0

Display XML formatted responses.

Sets the content type header to text/xml.

Method of the class: WP_Ajax_Response{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Ajax_Response = new WP_Ajax_Response();
$WP_Ajax_Response->send();

Changelog

Since 2.1.0 Introduced.

WP_Ajax_Response::send() code WP 6.7.2

public function send() {
	header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ) );
	echo "<?xml version='1.0' encoding='" . get_option( 'blog_charset' ) . "' standalone='yes'?><wp_ajax>";
	foreach ( (array) $this->responses as $response ) {
		echo $response;
	}
	echo '</wp_ajax>';
	if ( wp_doing_ajax() ) {
		wp_die();
	} else {
		die();
	}
}