delete_term_taxonomy WordPress Action Hook
The delete_term_taxonomy hook is called when a term taxonomy is deleted. It allows you to take action when a term taxonomy is deleted, such as cleaning up any associated data.
do_action( 'delete_term_taxonomy', int $tt_id ) #
Fires immediately before 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. |