edit_term_taxonomies
Fires immediately before a term to delete's children are reassigned a parent.
Description
Parameters (1)
- 0. $edit_tt_ids (array)
- An array of term taxonomy IDs for the given term.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'edit_term_taxonomies', $edit_tt_ids );
- The following example is for adding a hook callback.
- // define the edit_term_taxonomies callback
- function action_edit_term_taxonomies( $edit_tt_ids ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'edit_term_taxonomies', 'action_edit_term_taxonomies', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'edit_term_taxonomies', 'action_edit_term_taxonomies', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/taxonomy.php
- do_action( 'edit_term_taxonomies', $edit_tt_ids );