edit_term_taxonomies

edit_term_taxonomies

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('edit_term_taxonomies') is found 1 times:

  • /wp-includes/taxonomy.php line 2091
    2087
    2088
    2089
    2090
    2091
    2092
    2093
    2094
    2095
    2096
    2097
    * @since 2.9.0
     *
     * @param array $edit_tt_ids An array of term taxonomy IDs for the given term.
     */
    do_action( 'edit_term_taxonomies', $edit_tt_ids );
     
    $wpdb->update( $wpdb->term_taxonomy, compact( 'parent' ), array( 'parent' => $term_obj->term_id ) + compact( 'taxonomy' ) );
     
    // Clean the cache for all child terms.
    $edit_term_ids = wp_list_pluck( $edit_ids, 'term_id' );
    clean_term_cache( $edit_term_ids, $taxonomy );