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



rest_pre_dispatch › WordPress Filter Hooks

Since4.4.0
Deprecatedn/a
apply_filters( 'rest_pre_dispatch', null, $this, $request )
Parameters: (3)
  • () result Response to replace the requested version with. Can be anything a normal endpoint can return, or null to not hijack the request.
    Required: Yes
  • () server Server instance.
    Required: Yes
  • () request Request used to generate the response.
    Required: Yes
Defined at:
Codex:

Filters the pre-calculated result of a REST API dispatch request.

Allow hijacking the request before dispatching by returning a non-empty. The returned value will be used to serve the request instead.




Source

$result = apply_filters( 'rest_pre_dispatch', null, $this, $request );