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>
2221*2222* @param int$term Term ID.2223* @param int$tt_id Term taxonomy ID.2224* @param WP_Term$deleted_term Copy of the already-deleted term.2225* @param array$object_idsList of term object IDs.2226*/2227do_action("delete_{$taxonomy}",$term,$tt_id,$deleted_term,$object_ids);22282229returntrue;2230}22312232/**2233* Deletes one existing category.
History
Introduced in 4.5.0. Unchanged from 6.7.7 through 7.1.0.