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>
2231*2232* @param int$term Term ID.2233* @param int$tt_id Term taxonomy ID.2234* @param WP_Term$deleted_term Copy of the already-deleted term.2235* @param array$object_idsList of term object IDs.2236*/2237do_action("delete_{$taxonomy}",$term,$tt_id,$deleted_term,$object_ids);22382239returntrue;2240}22412242/**2243* Deletes one existing category.
History
Introduced in 4.5.0. Unchanged from 6.7.7 through 7.1.0.