Action hook 'xmlrpc_rsd_apis'

in WP Core File xmlrpc.php at line 53

View Source

xmlrpc_rsd_apis

Action Hook
Description
Fires when adding APIs to the Really Simple Discovery (RSD) endpoint.

Hook Information

File Location xmlrpc.php View on GitHub
Hook Type Action
Line Number 53

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into xmlrpc_rsd_apis
add_action('xmlrpc_rsd_apis', 'my_custom_function');

function my_custom_function() {
    // Your custom code here
}

Source Code Context

xmlrpc.php:53 - How this hook is used in WordPress core
<?php
  48  			 *
  49  			 * @link https://cyber.harvard.edu/blogs/gems/tech/rsd.html
  50  			 *
  51  			 * @since 3.5.0
  52  			 */
  53  			do_action( 'xmlrpc_rsd_apis' );
  54  			?>
  55  		</apis>
  56  	</service>
  57  </rsd>
  58  	<?php

PHP Documentation

<?php
/**
			 * Fires when adding APIs to the Really Simple Discovery (RSD) endpoint.
			 *
			 * @link https://cyber.harvard.edu/blogs/gems/tech/rsd.html
			 *
			 * @since 3.5.0
			 */
Quick Info
  • Hook Type: Action
  • Parameters: 0
  • File: xmlrpc.php
Related Hooks

Related hooks will be displayed here in future updates.