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
2848      }
2849
2850      $term_id = (int) $wpdb->insert_id;
2851
2852      // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string.
2853      if ( empty($slug) ) {
2854           $slug = sanitize_title($slug, $term_id);
2855
2856           /** This action is documented in wp-includes/taxonomy.php */
2857           do_action( 'edit_terms', $term_id, $taxonomy );
2858           $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2859
2860           /** This action is documented in wp-includes/taxonomy.php */
2861           do_action( 'edited_terms', $term_id, $taxonomy );
2862      }
2863
2864      $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 ) );
2865
2866      if ( !empty($tt_id) ) {
 
Line Code
3367
3368      /**
3369       * Fires immediately before the given terms are edited.
3370       *
3371       * @since 2.9.0
3372       *
3373       * @param int    $term_id  Term ID.
3374       * @param string $taxonomy Taxonomy slug.
3375       */
3376      do_action( 'edit_terms', $term_id, $taxonomy );
3377      $wpdb->update($wpdb->terms, compact( 'name', 'slug', 'term_group' ), compact( 'term_id' ) );
3378      if ( empty($slug) ) {
3379           $slug = sanitize_title($name, $term_id);
3380           $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
3381      }
3382
3383      /**
3384       * Fires immediately after the given terms are edited.
3385       *