registered_taxonomy_(taxonomy) action-hookWP 6.0.0

Fires after a specific taxonomy is registered.

The dynamic portion of the filter name, $taxonomy, refers to the taxonomy key.

Possible hook names include:

Usage

add_action( 'registered_taxonomy_(taxonomy)', 'wp_kama_registered_taxonomy_action', 10, 3 );

/**
 * Function for `registered_taxonomy_(taxonomy)` action-hook.
 * 
 * @param string       $taxonomy    Taxonomy slug.
 * @param array|string $object_type Object type or array of object types.
 * @param array        $args        Array of taxonomy registration arguments.
 *
 * @return void
 */
function wp_kama_registered_taxonomy_action( $taxonomy, $object_type, $args ){

	// action...
}
$taxonomy(string)
Taxonomy slug.
$object_type(array|string)
Object type or array of object types.
$args(array)
Array of taxonomy registration arguments.

Changelog

Since 6.0.0 Introduced.

Where the hook is called

register_taxonomy()
registered_taxonomy_(taxonomy)
wp-includes/taxonomy.php 588
do_action( "registered_taxonomy_{$taxonomy}", $taxonomy, $object_type, (array) $taxonomy_object );

Where the hook is used in WordPress

Usage not found.