From 087df40d4a49647e38429dd278134f1f8b4be4d1 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Thu, 6 Jan 2005 23:28:51 +0000 Subject: [PATCH] Allow plugins to hook into XML-RPC server. git-svn-id: http://svn.automattic.com/wordpress/trunk@2061 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- xmlrpc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/xmlrpc.php b/xmlrpc.php index 67ca98a7b..38df57dbb 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -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); }