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>
2783*2784* @param int$term_id Term ID.2785* @param int$tt_id Term taxonomy ID.2786* @param bool$update Whether this is an existing term being updated.2787* @param array$args Arguments passed to wp_insert_term().2788*/2789do_action("saved_{$taxonomy}",$term_id,$tt_id,false,$args);27902791returnarray(2792'term_id'=>$term_id,2793'term_taxonomy_id'=>$tt_id,2794);2795}
History
Introduced in 5.5.0. Unchanged from 6.7.7 through 7.1.0.