wpseek.com
A WordPress-centric search engine for devs and theme authors



rest_request_before_callbacks › WordPress Filter Hooks

Since4.7.0
Deprecatedn/a
apply_filters( 'rest_request_before_callbacks', $response, $handler, $request )
Parameters: (3)
  • () response Result to send to the client. Usually a WP_REST_Response or WP_Error.
    Required: Yes
  • () handler Route handler used for the request.
    Required: Yes
  • () request Request used to generate the response.
    Required: Yes
Defined at:
Codex:

Filters the response before executing any REST API callbacks.

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.




Source

$response = apply_filters( 'rest_request_before_callbacks', $response, $handler, $request );