saved_post_tag action-hookWP 5.5.0

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

This is one of the variants of the dynamic hook saved_(taxonomy)

Usage

add_action( 'saved_post_tag', 'wp_kama_saved_post_tag_action', 10, 4 );

/**
 * Function for `saved_post_tag` 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_post_tag_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(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_post_tag
wp-includes/taxonomy.php 2760
do_action( "saved_{$taxonomy}", $term_id, $tt_id, false, $args );

Where the hook is used in WordPress

Usage not found.