rest_prepare_{$this->taxonomy}

过滤钩子


apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request )
参数
  • (WP_REST_Response)
    $response
    The response object.
    Required:
  • (WP_Term)
    $item
    The original term object.
    Required:
  • (WP_REST_Request)
    $request
    Request used to generate the response.
    Required:
定义位置
  • wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php
    , line 940
引入
4.7.0
弃用

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.

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