edited_term
Fires after a term has been updated, and the term cache has been cleaned.
The edited_(taxonomy) hook is also available for targeting a specific taxonomy.
Использование
add_action( 'edited_term', 'wp_kama_edited_term_action', 10, 4 ); /** * Function for `edited_term` action-hook. * * @param int $term_id Term ID. * @param int $tt_id Term taxonomy ID. * @param string $taxonomy Taxonomy slug. * @param array $args Arguments passed to wp_update_term(). * * @return void */ function wp_kama_edited_term_action( $term_id, $tt_id, $taxonomy, $args ){ // action... }
- $term_id(int)
- Term ID.
- $tt_id(int)
- Term taxonomy ID.
- $taxonomy(строка)
- Taxonomy slug.
- $args(массив)
- Arguments passed to wp_update_term().
Список изменений
С версии 2.3.0 | Введена. |
С версии 6.1.0 | The $args parameter was added. |
Где вызывается хук
edited_term
wp-includes/taxonomy.php 3452
do_action( 'edited_term', $term_id, $tt_id, $taxonomy, $args );