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



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

Seit4.7.0
Veraltetn/v
apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request )
Parameter: (3)
  • (WP_REST_Response) $response The response object.
    Erforderlich: Ja
  • (WP_Term) $item The original term object.
    Erforderlich: Ja
  • (WP_REST_Request) $request Request used to generate the response.
    Erforderlich: Ja
Definiert in:
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.





Quellcode

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