Filters default query arguments for checking if a term exists.
Parameters
$defaults
array- An array of arguments passed to get_terms() .
More Arguments from get_terms( … $args )
Array or string of arguments. See WP_Term_Query::__construct() for information on accepted arguments. $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_term
int|null- ID of parent term under which to confine the exists search.
Null indicates the search is unconfined.
Source
$defaults = apply_filters( 'term_exists_default_query_args', $defaults, $term, $taxonomy, $parent_term );
Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.