edit_term_taxonomies хук-событие . WP 2.9.0
Fires immediately before a term to delete's children are reassigned a parent.
Использование
add_action( 'edit_term_taxonomies', 'action_function_name_3596' ); function action_function_name_3596( $edit_tt_ids ){ // action... }
- $edit_tt_ids(массив)
- An array of term taxonomy IDs for the given term.
Список изменений
С версии 2.9.0 | Введена. |
Где вызывается хук
edit_term_taxonomies
wp-includes/taxonomy.php 1907
do_action( 'edit_term_taxonomies', $edit_tt_ids );