rest_delete_category
Fires after a single term is deleted via the REST API.
Это один из вариантов динамического хука rest_delete_(taxonomy)
Использование
add_action( 'rest_delete_category', 'wp_kama_rest_delete_category_action', 10, 3 );
/**
* Function for `rest_delete_category` action-hook.
*
* @param WP_Term $term The deleted term.
* @param WP_REST_Response $response The response data.
* @param WP_REST_Request $request The request sent to the API.
*
* @return void
*/
function wp_kama_rest_delete_category_action( $term, $response, $request ){
// action...
}
- $term(WP_Term)
- The deleted term.
- $response(WP_REST_Response)
- The response data.
- $request(WP_REST_Request)
- The request sent to the API.
Список изменений
| С версии 4.7.0 | Введена. |
Где вызывается хук
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php 826
do_action( "rest_delete_{$this->taxonomy}", $term, $response, $request );