edited_post_tag
Fires after a term for a specific taxonomy has been updated, and the term cache has been cleaned.
This is one of the variants of the dynamic hook edited_(taxonomy)
Usage
add_action( 'edited_post_tag', 'wp_kama_edited_post_tag_action', 10, 2 ); /** * Function for `edited_post_tag` action-hook. * * @param int $term_id Term ID. * @param int $tt_id Term taxonomy ID. * * @return void */ function wp_kama_edited_post_tag_action( $term_id, $tt_id ){ // action... }
- $term_id(int)
- Term ID.
- $tt_id(int)
- Term taxonomy ID.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
edited_post_tag
wp-includes/taxonomy.php 3364
do_action( "edited_{$taxonomy}", $term_id, $tt_id );