IXR_Server::setCallbacks() WordPress Method
The IXR_Server::setCallbacks() method allows you to register your own callback functions for each of the XML-RPC methods supported by the server. This is useful if you want to override the default behavior of the server, or if you want to add your own custom methods.
IXR_Server::setCallbacks() #
Source
File: wp-includes/IXR/class-IXR-server.php
function setCallbacks() { $this->callbacks['system.getCapabilities'] = 'this:getCapabilities'; $this->callbacks['system.listMethods'] = 'this:listMethods'; $this->callbacks['system.multicall'] = 'this:multiCall'; }
Expand full source codeCollapse full source codeView on TracView on GitHub