Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_terms

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
2574      }
2575
2576      $term_id = (int) $wpdb->insert_id;
2577
2578      // Seems unreachable. However, is used in the case that a term name is provided, which sanitizes to an empty string.
2579      if ( empty( $slug ) ) {
2580           $slug = sanitize_title( $slug, $term_id );
2581
2582           /** This action is documented in wp-includes/taxonomy.php */
2583           do_action( 'edit_terms', $term_id, $taxonomy );
2584           $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2585
2586           /** This action is documented in wp-includes/taxonomy.php */
2587           do_action( 'edited_terms', $term_id, $taxonomy );
2588      }
2589
2590      $tt_id = $wpdb->get_var( $wpdb->prepare( "SELECT tt.term_taxonomy_id FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = %s AND t.term_id = %d", $taxonomy, $term_id ) );
2591
2592      if ( ! empty( $tt_id ) ) {
 
Line Code
3325       * Fires immediately before the given terms are edited.
3326       *
3327       * @since 2.9.0
3328       * @since 6.1.0 The `$args` parameter was added.
3329       *
3330       * @param int    $term_id  Term ID.
3331       * @param string $taxonomy Taxonomy slug.
3332       * @param array  $args     Arguments passed to wp_update_term().
3333       */
3334      do_action( 'edit_terms', $term_id, $taxonomy, $args );
3335
3336      $data = compact( 'name', 'slug', 'term_group' );
3337
3338      /**
3339       * Filters term data before it is updated in the database.
3340       *
3341       * @since 4.7.0
3342       *
3343       * @param array  $data     Term data to be updated.