Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: term_id_filter

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
2539
2540      /**
2541       * Filters the term ID after a new term is created.
2542       *
2543       * @since 2.3.0
2544       *
2545       * @param int $term_id Term ID.
2546       * @param int $tt_id   Term taxonomy ID.
2547       */
2548      $term_id = apply_filters( 'term_id_filter', $term_id, $tt_id );
2549
2550      clean_term_cache( $term_id, $taxonomy );
2551
2552      /**
2553       * Fires after a new term is created, and after the term cache has been cleaned.
2554       *
2555       * The {@see 'created_$taxonomy'} hook is also available for targeting a specific
2556       * taxonomy.
2557       *
 
Line Code
3259       *
3260       * @since 2.3.0
3261       *
3262       * @param int $term_id Term ID.
3263       * @param int $tt_id   Term taxonomy ID.
3264       */
3265      do_action( "edit_{$taxonomy}", $term_id, $tt_id );
3266
3267      /** This filter is documented in wp-includes/taxonomy.php */
3268      $term_id = apply_filters( 'term_id_filter', $term_id, $tt_id );
3269
3270      clean_term_cache( $term_id, $taxonomy );
3271
3272      /**
3273       * Fires after a term has been updated, and the term cache has been cleaned.
3274       *
3275       * The {@see 'edited_$taxonomy'} hook is also available for targeting a specific
3276       * taxonomy.
3277       *