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



rest_prepare_{$this->taxonomy} › WordPress Filter Hooks

Since4.7.0
Deprecatedn/a
apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request )
Parameters: (3)
  • (WP_REST_Response) $response The response object.
    Required: Yes
  • (WP_Term) $item The original term object.
    Required: Yes
  • (WP_REST_Request) $request Request used to generate the response.
    Required: Yes
Defined at:
Codex:

Filters the term data for a REST API response.

The dynamic portion of the hook name, $this->taxonomy, refers to the taxonomy slug.

Possible hook names include:

  • rest_prepare_category
  • rest_prepare_post_tag

Allows modification of the term data right before it is returned.





Source

return apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request );