created_category
Fires after a new term in a specific taxonomy is created, and after the term cache has been cleaned.
This is one of the variants of the dynamic hook created_(taxonomy)
Usage
add_action( 'created_category', 'wp_kama_created_category_action', 10, 2 ); /** * Function for `created_category` action-hook. * * @param int $term_id Term ID. * @param int $tt_id Term taxonomy ID. * * @return void */ function wp_kama_created_category_action( $term_id, $tt_id ){ // action... }
- $term_id(int)
- Term ID.
- $tt_id(int)
- Term taxonomy ID.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
created_category
wp-includes/taxonomy.php 2644
do_action( "created_{$taxonomy}", $term_id, $tt_id );