IXR_ClientMulticall::__construct() WordPress Method
The IXR_ClientMulticall class is used to make multiple XML-RPC calls in a single request. It is useful for making several calls to different methods on different servers, or for making a large number of calls to the same method on the same server.
IXR_ClientMulticall::__construct( $server, $path = false, $port = 80 ) #
PHP5 constructor.
Source
File: wp-includes/IXR/class-IXR-clientmulticall.php
function __construct( $server, $path = false, $port = 80 ) { parent::IXR_Client($server, $path, $port); $this->useragent = 'The Incutio XML-RPC PHP Library (multicall client)'; }
Expand full source codeCollapse full source codeView on TracView on GitHub