Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edited_term

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

Line Code
3029      /**
3030       * Fires after a term has been updated, and the term cache has been cleaned.
3031       *
3032       * @since 2.3.0
3033       *
3034       * @param int    $term_id  Term ID.
3035       * @param int    $tt_id    Term taxonomy ID.
3036       * @param string $taxonomy Taxonomy slug.
3037       */
3038      do_action( 'edited_term', $term_id, $tt_id, $taxonomy );
3039
3040      /**
3041       * Fires after a term for a specific taxonomy has been updated, and the term
3042       * cache has been cleaned.
3043       *
3044       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
3045       *
3046       * @since 2.3.0
3047       *