rest_api_loaded()WP 4.4.0

Loads the REST API.

No Hooks.

Return

null. Nothing (null).

Usage

rest_api_loaded();

Notes

  • Global. WP. $wp Current WordPress environment instance.

Changelog

Since 4.4.0 Introduced.

rest_api_loaded() code WP 6.5.2

function rest_api_loaded() {
	if ( empty( $GLOBALS['wp']->query_vars['rest_route'] ) ) {
		return;
	}

	/**
	 * Whether this is a REST Request.
	 *
	 * @since 4.4.0
	 * @var bool
	 */
	define( 'REST_REQUEST', true );

	// Initialize the server.
	$server = rest_get_server();

	// Fire off the request.
	$route = untrailingslashit( $GLOBALS['wp']->query_vars['rest_route'] );
	if ( empty( $route ) ) {
		$route = '/';
	}
	$server->serve_request( $route );

	// We're done.
	die();
}