edited_terms
Fires immediately after a term is updated in the database, but before its term-taxonomy relationship is updated.
Usage
add_action( 'edited_terms', 'wp_kama_edited_terms_action', 10, 3 );
/**
* Function for `edited_terms` action-hook.
*
* @param int $term_id Term ID.
* @param string $taxonomy Taxonomy slug.
* @param array $args Arguments passed to wp_update_term().
*
* @return void
*/
function wp_kama_edited_terms_action( $term_id, $taxonomy, $args ){
// action...
}
- $term_id(int)
- Term ID.
- $taxonomy(string)
- Taxonomy slug.
- $args(array)
- Arguments passed to wp_update_term().
Changelog
| Since 2.9.0 | Introduced. |
| Since 6.1.0 | The $args parameter was added. |
Where the hook is called
edited_terms
edited_terms
wp-includes/taxonomy.php 3386
do_action( 'edited_terms', $term_id, $taxonomy, $args );
wp-includes/taxonomy.php 2605
do_action( 'edited_terms', $term_id, $taxonomy );