create_category
Fires after a new term is created for a specific taxonomy.
Это один из вариантов динамического хука create_(taxonomy)
Использование
add_action( 'create_category', 'wp_kama_create_category_action', 10, 2 ); /** * Function for `create_category` action-hook. * * @param int $term_id Term ID. * @param int $tt_id Term taxonomy ID. * * @return void */ function wp_kama_create_category_action( $term_id, $tt_id ){ // action... }
- $term_id(int)
- Term ID.
- $tt_id(int)
- Term taxonomy ID.
Список изменений
С версии 2.3.0 | Введена. |
Где вызывается хук
create_category
wp-includes/taxonomy.php 2600
do_action( "create_{$taxonomy}", $term_id, $tt_id );