apply_filters( 'rest_request_from_url', WP_REST_Request|false $request, string $url )
- Since
- 4.5.0
Filters the REST API request generated from a URL.
Compatibility
- WordPress
- since 4.5.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$requestWP_REST_Request|false- Generated request object, or false if URL could not be parsed.
$urlstring- URL the request was generated from.
Where this hook fires · 1
wp-includes/rest-api/class-wp-rest-request.php:1096WP_REST_Request::from_url()
Source code
* @since 4.5.0 * * @param WP_REST_Request|false $request Generated request object, or false if URL * could not be parsed. * @param string $url URL the request was generated from. */ return apply_filters( 'rest_request_from_url', $request, $url ); }}Changelog
Introduced in 4.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.