IXR_Server::hasMethod() WordPress Method
The IXR_Server::hasMethod() method allows you to check if a method exists on a given XML-RPC server. This can be useful for debugging purposes.
IXR_Server::hasMethod( $method ) #
Source
File: wp-includes/IXR/class-IXR-server.php
function hasMethod($method) { return in_array($method, array_keys($this->callbacks)); }
Expand full source codeCollapse full source codeView on TracView on GitHub