edited_(taxonomy)
Fires after a term for a specific taxonomy has been updated, and the term cache has been cleaned.
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
Possible hook names include:
Usage
add_action( 'edited_(taxonomy)', 'wp_kama_edited_taxonomy_action', 10, 3 );
/**
* Function for `edited_(taxonomy)` action-hook.
*
* @param int $term_id Term ID.
* @param int $tt_id Term taxonomy ID.
* @param array $args Arguments passed to wp_update_term().
*
* @return void
*/
function wp_kama_edited_taxonomy_action( $term_id, $tt_id, $args ){
// action...
}
- $term_id(int)
- Term ID.
- $tt_id(int)
- Term taxonomy ID.
- $args(array)
- Arguments passed to wp_update_term().
Changelog
| Since 2.3.0 | Introduced. |
| Since 6.1.0 | The $args parameter was added. |
Where the hook is called
edited_(taxonomy)
wp-includes/taxonomy.php 3489
do_action( "edited_{$taxonomy}", $term_id, $tt_id, $args );