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
2132      }
2133
2134      $term_id = (int) $wpdb->insert_id;
2135
2136      // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string.
2137      if ( empty($slug) ) {
2138           $slug = sanitize_title($slug, $term_id);
2139
2140           /** This action is documented in wp-includes/taxonomy.php */
2141           do_action( 'edit_terms', $term_id, $taxonomy );
2142           $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2143
2144           /** This action is documented in wp-includes/taxonomy.php */
2145           do_action( 'edited_terms', $term_id, $taxonomy );
2146      }
2147
2148      $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 ) );
2149
2150      if ( !empty($tt_id) ) {
 
Line Code
2720
2721      /**
2722       * Fires immediately before the given terms are edited.
2723       *
2724       * @since 2.9.0
2725       *
2726       * @param int    $term_id  Term ID.
2727       * @param string $taxonomy Taxonomy slug.
2728       */
2729      do_action( 'edit_terms', $term_id, $taxonomy );
2730
2731      $data = compact( 'name', 'slug', 'term_group' );
2732
2733      /**
2734       * Filters term data before it is updated in the database.
2735       *
2736       * @since 4.7.0
2737       *
2738       * @param array  $data     Term data to be updated.