created_{$taxonomy} WordPress Action Hook
The created_{$taxonomy} hook is triggered after a new taxonomy is created. It can be used to perform custom actions when a new taxonomy is created.
do_action( "created_{$taxonomy}", int $term_id , int $tt_id ) #
Fires after a new term in a specific taxonomy is created, and after the term cache has been cleaned.
Description
The dynamic portion of the hook name, $taxonomy
, refers to the taxonomy slug.
Possible hook names include:
created_category
created_post_tag
Parameters
- $term_id
(int)Term ID.
- $tt_id
(int)Term taxonomy ID.
Source
File: wp-includes/taxonomy.php
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |