apply_filters( 'rest_pre_serve_request', bool $served , WP_HTTP_Response $result , WP_REST_Request $request , WP_REST_Server $server )
Filters whether the REST API request has already been served.
Description
Allow sending the request manually – by returning true, the API result will not be sent to the client.
Parameters
- $served
-
Whether the request has already been served.<br> Default false.
- $result
-
Result to send to the client. Usually a
WP_REST_Response
. - $request
-
Request used to generate the response.
- $server
-
Server instance.
Source
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |