rest_post_dispatch WordPress Filter Hook
The rest_post_dispatch hook is triggered after a rest request has been dispatched.
apply_filters( 'rest_post_dispatch', WP_HTTP_Response $result , WP_REST_Server $server , WP_REST_Request $request ) #
Filters the REST API response.
Description
Allows modification of the response before returning.
Parameters
- $result
(WP_HTTP_Response)Result to send to the client. Usually a
WP_REST_Response
.- $server
(WP_REST_Server)Server instance.
- $request
(WP_REST_Request)Request used to generate the response.
Source
Changelog
Version | Description |
---|---|
4.5.0 | Applied to embedded responses. |
4.4.0 | Introduced. |