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