IXR_ClientMulticall::addCall()


Description Description


Source Source

File: wp-includes/IXR/class-IXR-clientmulticall.php

    function addCall()
    {
        $args = func_get_args();
        $methodName = array_shift($args);
        $struct = array(
            'methodName' => $methodName,
            'params' => $args
        );
        $this->calls[] = $struct;
    }

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.