deleted_term_taxonomy WordPress Action Hook
The deleted_term_taxonomy hook is invoked when a term taxonomy is deleted. It is passed the term taxonomy ID as an argument. This hook can be used to perform cleanup operations when a term taxonomy is deleted.
do_action( 'deleted_term_taxonomy', int $tt_id ) #
Fires immediately after a term taxonomy ID is deleted.
Parameters
- $tt_id
(int)Term taxonomy ID.
Source
File: wp-includes/taxonomy.php
Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |