IXR_Server::listMethods() WordPress Method
The IXR_Server::listMethods() method is a simple method that lists all the XML-RPC methods available on a WordPress site. This is useful for debugging purposes, or for building client applications that need to know what methods are available.
IXR_Server::listMethods( $args ) #
Contents
Source
File: wp-includes/IXR/class-IXR-server.php
function listMethods($args) { // Returns a list of methods - uses array_reverse to ensure user defined // methods are listed before server defined methods return array_reverse(array_keys($this->callbacks)); }
Expand full source codeCollapse full source codeView on TracView on GitHub