On this page
apply_filters( 'rest_request_before_callbacks', WP_REST_Response|WP_HTTP_Response|WP_Error|mixed $response, array $handler, WP_REST_Request $request )
Filters the response before executing any REST API callbacks.
Description
Allows plugins to perform additional validation after a request is initialized and matched to a registered route, but before it is executed.
Note that this filter will not be called for requests that fail to authenticate or match to a registered route.
Parameters
$responseWP_REST_Response|WP_HTTP_Response|WP_Error|mixed-
Result to send to the client.
Usually a WP_REST_Response or WP_Error. $handlerarray-
Route handler used for the request.
$requestWP_REST_Request-
Request used to generate the response.
Source
File: wp-includes/rest-api/class-wp-rest-server.php. View all references
$response = apply_filters( 'rest_request_before_callbacks', $response, $handler, $request );
Related
Used By
| Used By | Description |
|---|---|
| WP_REST_Server::respond_to_request() wp-includes/rest-api/class-wp-rest-server.php | Dispatches the request to the callback handler. |
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/rest_request_before_callbacks