registered_taxonomy action-hookWP 3.3.0

Fires after a taxonomy is registered.

Usage

add_action( 'registered_taxonomy', 'wp_kama_registered_taxonomy_action', 10, 3 );

/**
 * Function for `registered_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 3.3.0 Introduced.

Where the hook is called

register_taxonomy()
registered_taxonomy
wp-includes/taxonomy.php 570
do_action( 'registered_taxonomy', $taxonomy, $object_type, (array) $taxonomy_object );

Where the hook is used in WordPress

Usage not found.