wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



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

Da4.7.0
Deprecaton/a
apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request )
Parametri: (3)
  • (WP_REST_Response) $response The response object.
    Richiesto:
  • (WP_Term) $item The original term object.
    Richiesto:
  • (WP_REST_Request) $request Request used to generate the response.
    Richiesto:
Definito a:
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.





Sorgenti

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