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