Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_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
2978      /**
2979       * Fires after a term has been updated, but before the term cache has been cleaned.
2980       *
2981       * @since 2.3.0
2982       *
2983       * @param int    $term_id  Term ID.
2984       * @param int    $tt_id    Term taxonomy ID.
2985       * @param string $taxonomy Taxonomy slug.
2986       */
2987      do_action( 'edit_term', $term_id, $tt_id, $taxonomy );
2988
2989      /**
2990       * Fires after a term in a specific taxonomy has been updated, but before the term
2991       * cache has been cleaned.
2992       *
2993       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
2994       *
2995       * @since 2.3.0
2996       *