WP_REST_Response::set_matched_route( string $route )

Sets the route (regex for path) that caused the response.


Description Description


Parameters Parameters

$route

(string) (Required) Route name.


Top ↑

Source Source

File: wp-includes/rest-api/class-wp-rest-response.php

	public function set_matched_route( $route ) {
		$this->matched_route = $route;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.