term_exists_default_query_args WordPress Filter Hook
The term_exists_default_query_args hook allows you to modify the default arguments used when checking if a term exists. This can be useful if you need to change the way the check is performed, for example to check against a custom taxonomy.
apply_filters( 'term_exists_default_query_args', array $defaults , int|string $term , string $taxonomy , int|null $parent ) #
Filters default query arguments for checking if a term exists.
Parameters
- $defaults
(array)An array of arguments passed to get_terms().
- $term
(int|string)The term to check. Accepts term ID, slug, or name.
- $taxonomy
(string)The taxonomy name to use. An empty string indicates the search is against all taxonomies.
- $parent
(int|null)ID of parent term under which to confine the exists search. Null indicates the search is unconfined.
Source
File: wp-includes/taxonomy.php
Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |