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
2390      // Seems unreachable. However, is used in the case that a term name is provided, which sanitizes to an empty string.
2391      if ( empty( $slug ) ) {
2392           $slug = sanitize_title( $slug, $term_id );
2393
2394           /** This action is documented in wp-includes/taxonomy.php */
2395           do_action( 'edit_terms', $term_id, $taxonomy );
2396           $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2397
2398           /** This action is documented in wp-includes/taxonomy.php */
2399           do_action( 'edited_terms', $term_id, $taxonomy );
2400      }
2401
2402      $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 ) );
2403
2404      if ( ! empty( $tt_id ) ) {
2405           return array(
2406                'term_id'          => $term_id,
2407                'term_taxonomy_id' => $tt_id,
2408           );
 
Line Code
3136      /**
3137       * Fires immediately after a term is updated in the database, but before its
3138       * term-taxonomy relationship is updated.
3139       *
3140       * @since 2.9.0
3141       *
3142       * @param int    $term_id  Term ID
3143       * @param string $taxonomy Taxonomy slug.
3144       */
3145      do_action( 'edited_terms', $term_id, $taxonomy );
3146
3147      /**
3148       * Fires immediate before a term-taxonomy relationship is updated.
3149       *
3150       * @since 2.9.0
3151       *
3152       * @param int    $tt_id    Term taxonomy ID.
3153       * @param string $taxonomy Taxonomy slug.
3154       */