wp_xmlrpc_server::mt_supportedMethods
Retrieves an array of methods supported by this server.
Method of the class: wp_xmlrpc_server{}
Hooks from the method
Returns
Array.
Usage
$wp_xmlrpc_server = new wp_xmlrpc_server(); $wp_xmlrpc_server->mt_supportedMethods();
Changelog
| Since 1.5.0 | Introduced. |
wp_xmlrpc_server::mt_supportedMethods() wp xmlrpc server::mt supportedMethods code WP 6.9.1
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 );
}