Fires after a term in a specific taxonomy is deleted.
Description
The dynamic portion of the hook name, $taxonomy, refers to the specific taxonomy the term belonged to. Possible hook names include: <ul> <li>delete_category</li> <li>delete_post_tag</li> </ul>
2210*2211* @param int$term Term ID.2212* @param int$tt_id Term taxonomy ID.2213* @param WP_Term$deleted_term Copy of the already-deleted term.2214* @param array$object_idsList of term object IDs.2215*/2216do_action("delete_{$taxonomy}",$term,$tt_id,$deleted_term,$object_ids);22172218returntrue;2219}22202221/**2222* Deletes one existing category.
History
Introduced in 4.5.0. Unchanged from 6.7.7 through 7.1.0.