wpseek.com
WordPress开发者和主题制作者的搜索引擎



_xmlrpc_wp_die_handler › WordPress Function

Since3.2.0
已弃用n/a
_xmlrpc_wp_die_handler ( $message, $title = '', $args = array() )
访问:
  • private
参数: (3)
  • (string) $message Error message.
    Required: Yes
  • (string) $title Optional. Error title. Default empty string.
    Required: No
    默认: (empty)
  • (string|array) $args Optional. Arguments to control behavior. Default empty array.
    Required: No
    默认: array()
定义在:
文档:

Kills WordPress execution and displays XML response with an error message.

This is the handler for wp_die() when processing XMLRPC requests.


源码

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