wp_xmlrpc_server::mt_supportedMethods()publicWP 1.5.0

Retrieves an array of methods supported by this server.

Method of the class: wp_xmlrpc_server{}

Hooks from the method

Return

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() code WP 6.5.2

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 );
}