edited_term_taxonomy WordPress Action Hook
The edited_term_taxonomy hook is called after a term taxonomy has been successfully updated. It is passed the term taxonomy ID and the taxonomy object. This hook can be used to perform an action after a term taxonomy has been updated.
do_action( 'edited_term_taxonomy', int $tt_id , string $taxonomy ) #
Fires immediately after a term-taxonomy relationship is updated.
Parameters
- $tt_id
(int)Term taxonomy ID.
- $taxonomy
(string)Taxonomy slug.
Source
File: wp-includes/taxonomy.php
Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |