On this page
apply_filters( 'xmlrpc_methods', string[] $methods )
Filters the methods exposed by the XML-RPC server.
Description
This filter can be used to add new methods, and remove built-in methods.
Parameters
$methodsstring[]-
An array of XML-RPC methods, keyed by their methodName.
Source
File: wp-includes/class-wp-xmlrpc-server.php. View all references
$this->methods = apply_filters( 'xmlrpc_methods', $this->methods );
Related
Used By
| Used By | Description |
|---|---|
| wp_xmlrpc_server::__construct() wp-includes/class-wp-xmlrpc-server.php | Registers all of the XMLRPC methods that XMLRPC server understands. |
Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/xmlrpc_methods