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)


Top ↑

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


Top ↑

Changelog

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

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.