wp_xmlrpc_server::mt_supportedMethods()publicWP 1.5.0

Retrieves an array of methods supported by this server.

Метод класса: wp_xmlrpc_server{}

Хуки из метода

Возвращает

Массив.

Использование

$wp_xmlrpc_server = new wp_xmlrpc_server();
$wp_xmlrpc_server->mt_supportedMethods();

Список изменений

С версии 1.5.0 Введена.

Код wp_xmlrpc_server::mt_supportedMethods() WP 6.6.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 );
}