deleted_term_taxonomy
Fires immediately after a term taxonomy ID is deleted.
Description
Parameters (1)
- 0. $tt_id (int)
- Term taxonomy ID.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'deleted_term_taxonomy', $tt_id );
- The following example is for adding a hook callback.
- // define the deleted_term_taxonomy callback
- function action_deleted_term_taxonomy( $tt_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'deleted_term_taxonomy', 'action_deleted_term_taxonomy', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'deleted_term_taxonomy', 'action_deleted_term_taxonomy', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/taxonomy.php
- do_action( 'deleted_term_taxonomy', $tt_id );