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
2596      // Seems unreachable. However, is used in the case that a term name is provided, which sanitizes to an empty string.
2597      if ( empty( $slug ) ) {
2598           $slug = sanitize_title( $slug, $term_id );
2599
2600           /** This action is documented in wp-includes/taxonomy.php */
2601           do_action( 'edit_terms', $term_id, $taxonomy );
2602           $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2603
2604           /** This action is documented in wp-includes/taxonomy.php */
2605           do_action( 'edited_terms', $term_id, $taxonomy );
2606      }
2607
2608      $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 ) );
2609
2610      if ( ! empty( $tt_id ) ) {
2611           return array(
2612                'term_id'          => $term_id,
2613                'term_taxonomy_id' => $tt_id,
2614           );
 
Line Code
3377       * term-taxonomy relationship is updated.
3378       *
3379       * @since 2.9.0
3380       * @since 6.1.0 The `$args` parameter was added.
3381       *
3382       * @param int    $term_id  Term ID.
3383       * @param string $taxonomy Taxonomy slug.
3384       * @param array  $args     Arguments passed to wp_update_term().
3385       */
3386      do_action( 'edited_terms', $term_id, $taxonomy, $args );
3387
3388      /**
3389       * Fires immediate before a term-taxonomy relationship is updated.
3390       *
3391       * @since 2.9.0
3392       * @since 6.1.0 The `$args` parameter was added.
3393       *
3394       * @param int    $tt_id    Term taxonomy ID.
3395       * @param string $taxonomy Taxonomy slug.