Allow plugins to hook into XML-RPC server.

git-svn-id: https://develop.svn.wordpress.org/trunk@2061 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-01-06 23:28:51 +00:00
parent a4083cd938
commit f0318fb457
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ class wp_xmlrpc_server extends IXR_Server {
'demo.sayHello' => 'this:sayHello',
'demo.addTwoNumbers' => 'this:addTwoNumbers'
);
$this->methods = apply_filters('xmlrpc_methods', $this->methods);
$this->IXR_Server($this->methods);
}