edited_term_taxonomies action-hook . WP 2.9.0
Fires immediately after a term to delete's children are reassigned a parent.
Usage
add_action( 'edited_term_taxonomies', 'action_function_name_6365' ); function action_function_name_6365( $edit_tt_ids ){ // action... }
- $edit_tt_ids(array)
- An array of term taxonomy IDs for the given term.
Changelog
Since 2.9.0 | Introduced. |
Where the hook is called
edited_term_taxonomies
wp-includes/taxonomy.php 1922
do_action( 'edited_term_taxonomies', $edit_tt_ids );