-
Book Overview & Buying
-
Table Of Contents
WordPress Web Application Development
By :
Typically, most popular APIs provide complete documentation for accessing the API methods. Alternatively, we can use a new API method to provide details about all other API methods and parameters. This allows the third-party users to request an API method and get the details about all other functions.
WordPress uses the API method named system.listMethods for listing all the existing methods inside the API. Here, we are going to go one step further by providing the API method parameters with the complete list.
We can start the process by adding another API method to the xml_rpc_api function, as shown in the following code:
public function xml_rpc_api($methods) {
$methods['wpwa.subscribeToDevelopers'] = array($this, 'developer_subscriptions');
$methods['wpwa.getDevelopers'] = array($this, 'developers_list');
$methods['wpwa.apiDoc'] = array($this, 'wpwa_api_doc');
return $methods;
}Once updated, we can use the following code to provide details...
Change the font size
Change margin width
Change background colour