rest_after_insert_(taxonomy) хук-событиеWP 5.0.0

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

The dynamic portion of the hook name, $this->taxonomy, refers to the taxonomy slug.

Possible hook names include:

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

add_action( 'rest_after_insert_(taxonomy)', 'wp_kama_rest_after_insert_taxonomy_action', 10, 3 );

/**
 * Function for `rest_after_insert_(taxonomy)` 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_after_insert_taxonomy_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.

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

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

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

WP_REST_Terms_Controller::create_item()
rest_after_insert_(taxonomy)
WP_REST_Menus_Controller::create_item()
rest_after_insert_(taxonomy)
WP_REST_Menus_Controller::update_item()
rest_after_insert_(taxonomy)
WP_REST_Terms_Controller::update_item()
rest_after_insert_(taxonomy)
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php 594
do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, true );
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php 268
do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, true );
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php 352
do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false );
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php 699
do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false );

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

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