Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edited_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
2259      // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string.
2260      if ( empty( $slug ) ) {
2261           $slug = sanitize_title( $slug, $term_id );
2262
2263           /** This action is documented in wp-includes/taxonomy.php */
2264           do_action( 'edit_terms', $term_id, $taxonomy );
2265           $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2266
2267           /** This action is documented in wp-includes/taxonomy.php */
2268           do_action( 'edited_terms', $term_id, $taxonomy );
2269      }
2270
2271      $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 ) );
2272
2273      if ( ! empty( $tt_id ) ) {
2274           return array(
2275                'term_id'          => $term_id,
2276                'term_taxonomy_id' => $tt_id,
2277           );
 
Line Code
2945
2946      /**
2947       * Fires immediately after the given terms are edited.
2948       *
2949       * @since 2.9.0
2950       *
2951       * @param int    $term_id  Term ID
2952       * @param string $taxonomy Taxonomy slug.
2953       */
2954      do_action( 'edited_terms', $term_id, $taxonomy );
2955
2956      /**
2957       * Fires immediate before a term-taxonomy relationship is updated.
2958       *
2959       * @since 2.9.0
2960       *
2961       * @param int    $tt_id    Term taxonomy ID.
2962       * @param string $taxonomy Taxonomy slug.
2963       */