edit_post_tag action-hookWP 2.3.0

Fires after a term in a specific taxonomy has been updated, but before the term cache has been cleaned.

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

Usage

add_action( 'edit_post_tag', 'wp_kama_edit_post_tag_action', 10, 3 );

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

	// action...
}
$term_id(int)
Term ID.
$tt_id(int)
Term taxonomy ID.
$args(array)
Arguments passed to wp_update_term().

Changelog

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

Where the hook is called

wp_update_term()
edit_post_tag
wp-includes/taxonomy.php 3402
do_action( "edit_{$taxonomy}", $term_id, $tt_id, $args );

Where the hook is used in WordPress

Usage not found.