Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edited_{$taxonomy}

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
2826       * cache has been cleaned.
2827       *
2828       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
2829       *
2830       * @since 2.3.0
2831       *
2832       * @param int $term_id Term ID.
2833       * @param int $tt_id   Term taxonomy ID.
2834       */
2835      do_action( "edited_{$taxonomy}", $term_id, $tt_id );
2836
2837      return array('term_id' => $term_id, 'term_taxonomy_id' => $tt_id);
2838 }
2839
2840 /**
2841  * Enable or disable term counting.
2842  *
2843  * @since 2.5.0
2844  *