WP_REST_Response::get_matched_route()publicWP 4.4.0

Retrieves the route that was used.

Method of the class: WP_REST_Response{}

No Hooks.

Return

String. The matched route.

Usage

$WP_REST_Response = new WP_REST_Response();
$WP_REST_Response->get_matched_route();

Changelog

Since 4.4.0 Introduced.

WP_REST_Response::get_matched_route() code WP 6.5.2

public function get_matched_route() {
	return $this->matched_route;
}