do_action( 'delete_term', int $term, int $tt_id, string $taxonomy, WP_Term $deleted_term, array $object_ids )

Fires after a term is deleted from the database and the cache is cleaned.


Description

The ‘delete_$taxonomy’ hook is also available for targeting a specific taxonomy.


Parameters

$term

Term ID.

$tt_id

Term taxonomy ID.

$taxonomy

Taxonomy slug.

$deleted_term

Copy of the already-deleted term.

$object_ids

List of term object IDs.


Source

File: wp-includes/taxonomy.php

View on GitHub



Changelog

Changelog
Version Description
4.5.0 Introduced the $object_ids argument.
2.5.0 Introduced.