wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



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

Od4.7.0
Przestarzałyn/a
apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request )
Parametry: (3)
  • (WP_REST_Response) $response The response object.
    Wymagane: Tak
  • (WP_Term) $item The original term object.
    Wymagane: Tak
  • (WP_REST_Request) $request Request used to generate the response.
    Wymagane: Tak
Zdefiniowane na:
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.





Źródło

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