wp_xmlrpc_server::mt_supportedMethods
Retrieves an array of methods supported by this server.
Метод класса: wp_xmlrpc_server{}
Хуки из метода
Возвращает
array.
Использование
$wp_xmlrpc_server = new wp_xmlrpc_server(); $wp_xmlrpc_server->mt_supportedMethods();
Список изменений
| С версии 1.5.0 | Введена. |
Код wp_xmlrpc_server::mt_supportedMethods() wp xmlrpc server::mt supportedMethods WP 7.1.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 );
}