xmlrpc_rsd_apis
Fires when adding APIs to the Really Simple Discovery (RSD) endpoint.
Usage
add_action( 'xmlrpc_rsd_apis', 'wp_kama_xmlrpc_rsd_apis_action' );
/**
* Function for `xmlrpc_rsd_apis` action-hook.
*
* @return void
*/
function wp_kama_xmlrpc_rsd_apis_action(){
// action...
}Changelog
| Since 3.5.0 | Introduced. |
Where the hook is called
In file: /xmlrpc.php
xmlrpc_rsd_apis
xmlrpc.php 53
do_action( 'xmlrpc_rsd_apis' );
Where the hook is used in WordPress
wp-includes/default-filters.php 330
add_action( 'xmlrpc_rsd_apis', 'rest_output_rsd' );