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