edit_term WordPress Action Hook
The edit_term hook is called when a term is updated. It is passed the term object and the taxonomy object as arguments.
do_action( 'edit_term', int $term_id , int $tt_id , string $taxonomy ) #
Fires after a term has been updated, but before the term cache has been cleaned.
Description
The ‘edit_$taxonomy’ hook is also available for targeting a specific taxonomy.
Parameters
- $term_id
(int)Term ID.
- $tt_id
(int)Term taxonomy ID.
- $taxonomy
(string)Taxonomy slug.
Source
File: wp-includes/taxonomy.php
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |