saved_(taxonomy)
Fires after a term in a specific taxonomy has been saved, and the term cache has been cleared.
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
Possible hook names include:
Использование
add_action( 'saved_(taxonomy)', 'wp_kama_saved_taxonomy_action', 10, 4 ); /** * Function for `saved_(taxonomy)` action-hook. * * @param int $term_id Term ID. * @param int $tt_id Term taxonomy ID. * @param bool $update Whether this is an existing term being updated. * @param array $args Arguments passed to wp_insert_term(). * * @return void */ function wp_kama_saved_taxonomy_action( $term_id, $tt_id, $update, $args ){ // action... }
- $term_id(int)
- Term ID.
- $tt_id(int)
- Term taxonomy ID.
- $update(true|false)
- Whether this is an existing term being updated.
- $args(массив)
- Arguments passed to wp_insert_term().
Список изменений
С версии 5.5.0 | Введена. |
С версии 6.1.0 | The $args parameter was added. |
Где вызывается хук
saved_(taxonomy)
saved_(taxonomy)
wp-includes/taxonomy.php 2767
do_action( "saved_{$taxonomy}", $term_id, $tt_id, false, $args );
wp-includes/taxonomy.php 3477
do_action( "saved_{$taxonomy}", $term_id, $tt_id, true, $args );