register_{$taxonomy}_taxonomy_args WordPress Filter Hook
The register_{$taxonomy}_taxonomy_args hook allows you to modify the arguments used when registering a taxonomy. This can be useful if you need to change the labels or capabilities associated with the taxonomy.
apply_filters( "register_{$taxonomy}_taxonomy_args", array $args , string $taxonomy , string[] $object_type ) #
Filters the arguments for registering a specific taxonomy.
Description
The dynamic portion of the filter name, $taxonomy, refers to the taxonomy key.
Possible hook names include:
register_category_taxonomy_argsregister_post_tag_taxonomy_args
Parameters
- $args
(array)Array of arguments for registering a taxonomy. See the register_taxonomy() function for accepted arguments.
- $taxonomy
(string)Taxonomy key.
- $object_type
(string[])Array of names of object types for the taxonomy.
Source
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |