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.


Top ↑

Parameters

$methods string[]
An array of XML-RPC methods, keyed by their methodName.

Top ↑

Source

File: wp-includes/class-wp-xmlrpc-server.php. View all references

$this->methods = apply_filters( 'xmlrpc_methods', $this->methods );


Top ↑

Changelog

Changelog
Version Description
1.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.