WP_REST_Response::set_matched_route() WordPress Method
The WP_REST_Response::set_matched_route() method sets the route that was matched for the request.
WP_REST_Response::set_matched_route( string $route ) #
Sets the route (regex for path) that caused the response.
Contents
Parameters
- $route
(string)(Required)Route name.
Source
File: wp-includes/rest-api/class-wp-rest-response.php
public function set_matched_route( $route ) { $this->matched_route = $route; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |