We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/** * Callback function for the 'rest_api_init' action. * * @param $wp_rest_server $ */ function my_rest_api_init_callback( $wp_rest_server = null ) { // Your code here. } add_action( 'rest_api_init', 'my_rest_api_init_callback' );
$wp_rest_server
do_action( 'rest_api_init' )
do_action( 'rest_api_init', $wp_rest_server )
← All Hooks