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>
3488* @since 6.1.0 The `$args` parameter was added.3489*3490* @param int$term_id Term ID.3491* @param int$tt_id Term taxonomy ID.3492* @param array$args Arguments passed to wp_update_term().3493*/3494do_action("edit_{$taxonomy}",$term_id,$tt_id,$args);34953496/** This filter is documented in wp-includes/taxonomy.php */3497$term_id=apply_filters('term_id_filter',$term_id,$tt_id,$args);34983499clean_term_cache($term_id,$taxonomy);3500
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.