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