wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



rest_request_after_callbacks › WordPress Filter Hooks

Seit4.7.0
Veraltetn/v
apply_filters( 'rest_request_after_callbacks', $response, $handler, $request )
Parameter: (3)
  • () response Result to send to the client. Usually a WP_REST_Response or WP_Error.
    Erforderlich: Ja
  • () handler Route handler used for the request.
    Erforderlich: Ja
  • () request Request used to generate the response.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the response immediately after executing any REST API callbacks.

Allows plugins to perform any needed cleanup, for example, to undo changes made during the {@see 'rest_request_before_callbacks'} filter. Note that this filter will not be called for requests that fail to authenticate or match to a registered route. Note that an endpoint's `permission_callback` can still be called after this filter - see `rest_send_allow_header()`.




Quellcode

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