- 
                Notifications
    You must be signed in to change notification settings 
- Fork 84
rest_api_init
        github-actions[bot] edited this page Oct 6, 2025 
        ·
        1 revision
      
    /**
 * 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 )do_action( 'rest_api_init' )Follow @[email protected] for updates and news.