IXR_ClientMulticall::query()publicWP 1.5.0

Method of the class: IXR_ClientMulticall{}

No Hooks.

Return

true|false.

Usage

$IXR_ClientMulticall = new IXR_ClientMulticall();
$IXR_ClientMulticall->query( ...$args );
...$args (required)
-

Changelog

Since 1.5.0 Introduced.
Since 5.5.0 Formalized the existing ...$args parameter by adding it to the function signature.

IXR_ClientMulticall::query() code WP 6.5.2

function query( ...$args )
{
    // Prepare multicall, then call the parent::query() method
    return parent::query('system.multicall', $this->calls);
}