saved_term action-hookWP 5.5.0

Fires after a term has been saved, and the term cache has been cleared.

The saved_(taxonomy) hook is also available for targeting a specific taxonomy.

Usage

add_action( 'saved_term', 'wp_kama_saved_term_action', 10, 5 );

/**
 * Function for `saved_term` action-hook.
 * 
 * @param int    $term_id  Term ID.
 * @param int    $tt_id    Term taxonomy ID.
 * @param string $taxonomy Taxonomy slug.
 * @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_term_action( $term_id, $tt_id, $taxonomy, $update, $args ){

	// action...
}
$term_id(int)
Term ID.
$tt_id(int)
Term taxonomy ID.
$taxonomy(string)
Taxonomy slug.
$update(true|false)
Whether this is an existing term being updated.
$args(array)
Arguments passed to wp_insert_term().

Changelog

Since 5.5.0 Introduced.
Since 6.1.0 The $args parameter was added.

Where the hook is called

wp_insert_term()
saved_term
wp_update_term()
saved_term
wp-includes/taxonomy.php 2739
do_action( 'saved_term', $term_id, $tt_id, $taxonomy, false, $args );
wp-includes/taxonomy.php 3469
do_action( 'saved_term', $term_id, $tt_id, $taxonomy, true, $args );

Where the hook is used in WordPress

Usage not found.