IXR_ClientMulticall::query() WordPress Method
The IXR_ClientMulticall::query() method makes a multicall request to an XML-RPC server. It takes an array of method names and parameters, and returns an array of results.
IXR_ClientMulticall::query( $args ) #
Return
(bool)
Source
File: wp-includes/IXR/class-IXR-clientmulticall.php
function query( ...$args ) { // Prepare multicall, then call the parent::query() method return parent::query('system.multicall', $this->calls); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Formalized the existing ...$args parameter by adding it to the function signature. |
1.5.0 | Introduced. |