wpseek.com
				A WordPress-centric search engine for devs and theme authors
			_xmlrpc_wp_die_handler is private and should not be used in themes or plugins directly.
_xmlrpc_wp_die_handler › WordPress Function
Since3.2.0
Deprecatedn/a
› _xmlrpc_wp_die_handler ( $message, $title = '', $args = array() )
| Access: | 
 | 
| Parameters: (3) | 
 | 
| Defined at: | 
 | 
| Codex: | 
Kills WordPress execution and displays XML response with an error message.
This is the handler for wp_die() when processing XML-RPC requests.Related Functions: _xml_wp_die_handler, _ajax_wp_die_handler, _jsonp_wp_die_handler, _scalar_wp_die_handler, _json_wp_die_handler
	Source
function _xmlrpc_wp_die_handler( $message, $title = '', $args = array() ) {
	global $wp_xmlrpc_server;
	list( $message, $title, $parsed_args ) = _wp_die_process_input( $message, $title, $args );
	if ( ! headers_sent() ) {
		nocache_headers();
	}
	if ( $wp_xmlrpc_server ) {
		$error = new IXR_Error( $parsed_args['response'], $message );
		$wp_xmlrpc_server->output( $error->getXml() );
	}
	if ( $parsed_args['exit'] ) {
		die();
	}
}