IXR_IntrospectionServer::addCallback() WordPress Method

The IXR_IntrospectionServer::addCallback() method is used to register a new callback with the server. Callbacks are used to extend the functionality of the server, and can be used to add new methods or modify existing ones.

IXR_IntrospectionServer::addCallback( $method,  $callback,  $args,  $help ) #


Source

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

    function addCallback($method, $callback, $args, $help)
    {
        $this->callbacks[$method] = $callback;
        $this->signatures[$method] = $args;
        $this->help[$method] = $help;
    }

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.