wp_xmlrpc_server::mt_supportedMethods() WordPress Method
The wp_xmlrpc_server::mt_supportedMethods() method is a WordPress XML-RPC method that returns an array of supported methods.
wp_xmlrpc_server::mt_supportedMethods() #
Retrieve an array of methods supported by this server.
Return
(array)
Source
File: wp-includes/class-wp-xmlrpc-server.php
public function mt_supportedMethods() {
/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
do_action( 'xmlrpc_call', 'mt.supportedMethods', array(), $this );
return array_keys( $this->methods );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |