rest_insert_post_tag хук-событиеWP 4.7.0

Fires after a single term is created or updated via the REST API.

Это один из вариантов динамического хука rest_insert_(taxonomy)

Использование

add_action( 'rest_insert_post_tag', 'wp_kama_rest_insert_post_tag_action', 10, 3 );

/**
 * Function for `rest_insert_post_tag` action-hook.
 * 
 * @param WP_Term         $term     Inserted or updated term object.
 * @param WP_REST_Request $request  Request object.
 * @param bool            $creating True when creating a term, false when updating.
 *
 * @return void
 */
function wp_kama_rest_insert_post_tag_action( $term, $request, $creating ){

	// action...
}
$term(WP_Term)
Inserted or updated term object.
$request(WP_REST_Request)
Request object.
$creating(true|false)
True when creating a term, false when updating.

Список изменений

С версии 4.7.0 Введена.

Где вызывается хук

WP_REST_Terms_Controller::create_item()
rest_insert_post_tag
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php 559
do_action( "rest_insert_{$this->taxonomy}", $term, $request, true );

Где используется хук в WordPress

Использование не найдено.