saved_(taxonomy) action-hook . WP 5.5.0
Fires after a term in a specific taxonomy has been saved, and the term cache has been cleared.
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
Usage
add_action( 'saved_(taxonomy)', 'action_function_name_3099', 10, 3 ); function action_function_name_3099( $term_id, $tt_id, $update ){ // action... }
- $term_id(int)
- Term ID.
- $tt_id(int)
- Term taxonomy ID.
- $update(true/false)
- Whether this is an existing term being updated.
Changelog
Since 5.5.0 | Introduced. |
Where the hook is called
saved_(taxonomy)
saved_(taxonomy)
wp-includes/taxonomy.php 2524
do_action( "saved_{$taxonomy}", $term_id, $tt_id, false );
wp-includes/taxonomy.php 3206
do_action( "saved_{$taxonomy}", $term_id, $tt_id, true );