create_(taxonomy) хук-событиеWP 2.3.0

Fires after a new term is created for a specific taxonomy.

The dynamic portion of the hook name, $taxonomy, refers to the slug of the taxonomy the term was created for.

Possible hook names include:

Использование

add_action( 'create_(taxonomy)', 'wp_kama_create_taxonomy_action', 10, 3 );

/**
 * Function for `create_(taxonomy)` action-hook.
 * 
 * @param int   $term_id Term ID.
 * @param int   $tt_id   Term taxonomy ID.
 * @param array $args    Arguments passed to wp_insert_term().
 *
 * @return void
 */
function wp_kama_create_taxonomy_action( $term_id, $tt_id, $args ){

	// action...
}
$term_id(int)
Term ID.
$tt_id(int)
Term taxonomy ID.
$args(массив)
Arguments passed to wp_insert_term().

Список изменений

С версии 2.3.0 Введена.
С версии 6.1.0 The $args parameter was added.

Где вызывается хук

wp_insert_term()
create_(taxonomy)
wp-includes/taxonomy.php 2672
do_action( "create_{$taxonomy}", $term_id, $tt_id, $args );

Где используется хук в WordPress

Использование не найдено.