delete_term_taxonomy action-hook . WP 2.9.0
Fires immediately before a term taxonomy ID is deleted.
Usage
add_action( 'delete_term_taxonomy', 'action_function_name_1436' ); function action_function_name_1436( $tt_id ){ // action... }
- $tt_id(int)
- Term taxonomy ID.
Changelog
Since 2.9.0 | Introduced. |
Where the hook is called
delete_term_taxonomy
wp-includes/taxonomy.php 1969
do_action( 'delete_term_taxonomy', $tt_id );