Fires after a term in a specific taxonomy has been saved, and the term cache has been cleared.
Description
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug. Possible hook names include: <ul> <li>saved_category</li> <li>saved_post_tag</li> </ul>
2814*2815* @param int$term_id Term ID.2816* @param int$tt_id Term taxonomy ID.2817* @param bool$update Whether this is an existing term being updated.2818* @param array$args Arguments passed to wp_insert_term().2819*/2820do_action("saved_{$taxonomy}",$term_id,$tt_id,false,$args);28212822returnarray(2823'term_id'=>$term_id,2824'term_taxonomy_id'=>$tt_id,2825);2826}
History
Introduced in 5.5.0. Unchanged from 6.7.7 through 7.1.0.