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)


Top ↑

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


Top ↑

Changelog

Changelog
VersionDescription
1.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More