register_taxonomy_args WordPress Filter Hook

The register_taxonomy_args hook is used to modify the arguments that are used when registering a custom taxonomy. This hook allows you to change the labels, description, public, show_ui, show_in_nav_menus, show_tagcloud, show_admin_column, and Capabilities arguments.

apply_filters( 'register_taxonomy_args', array $args, string $taxonomy, string[] $object_type ) #

Filters the arguments for registering a taxonomy.


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.


Top ↑

Source

File: wp-includes/class-wp-taxonomy.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.