Fires after a term in a specific taxonomy has been updated, but before the term cache has been cleaned.
Description
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug. Possible hook names include: <ul> <li>edit_category</li> <li>edit_post_tag</li> </ul>
3446* @since 6.1.0 The `$args` parameter was added.3447*3448* @param int$term_id Term ID.3449* @param int$tt_id Term taxonomy ID.3450* @param array$args Arguments passed to wp_update_term().3451*/3452do_action("edit_{$taxonomy}",$term_id,$tt_id,$args);34533454/** This filter is documented in wp-includes/taxonomy.php */3455$term_id=apply_filters('term_id_filter',$term_id,$tt_id);34563457clean_term_cache($term_id,$taxonomy);3458
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.