Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_methods

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
104                // PingBack
105                'pingback.ping' => 'this:pingback_ping',
106                'pingback.extensions.getPingbacks' => 'this:pingback_extensions_getPingbacks',
107
108                'demo.sayHello' => 'this:sayHello',
109                'demo.addTwoNumbers' => 'this:addTwoNumbers'
110           );
111
112           $this->initialise_blog_option_info( );
113           $this->methods = apply_filters('xmlrpc_methods', $this->methods);
114      }
115
116      function serve_request() {
117           $this->IXR_Server($this->methods);
118      }
119
120      /**
121       * Test XMLRPC API by saying, "Hello!" to client.
122       *