saved_(taxonomy) хук-событие . 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.
Использование
add_action( 'saved_(taxonomy)', 'action_function_name_1927', 10, 3 ); function action_function_name_1927( $term_id, $tt_id, $update ){ // action... }
- $term_id(число)
- Term ID.
- $tt_id(число)
- Term taxonomy ID.
- $update(true/false)
- Whether this is an existing term being updated.
Список изменений
С версии 5.5.0 | Введена. |
Где вызывается хук
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 );