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>
2762*2763* @param int$term_id Term ID.2764* @param int$tt_id Term taxonomy ID.2765* @param bool$update Whether this is an existing term being updated.2766* @param array$args Arguments passed to wp_insert_term().2767*/2768do_action("saved_{$taxonomy}",$term_id,$tt_id,false,$args);27692770returnarray(2771'term_id'=>$term_id,2772'term_taxonomy_id'=>$tt_id,2773);2774}
History
Introduced in 5.5.0. Unchanged from 6.7.7 through 7.1.0.