apply_filters( “rest_{$this->taxonomy}_query”, array $prepared_args, WP_REST_Request $request )

In this article

Filters get_terms() arguments when querying terms via the REST API.

Description

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

Possible hook names include:

  • rest_category_query
  • rest_post_tag_query

Enables adding extra arguments or setting defaults for a terms collection request.

Parameters

$prepared_argsarray
Array of arguments for get_terms() .
More Arguments from get_terms( … $args )Array or string of arguments. See WP_Term_Query::__construct() for information on accepted arguments.
$requestWP_REST_Request
The REST API request.

Source

$prepared_args = apply_filters( "rest_{$this->taxonomy}_query", $prepared_args, $request );

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.