rest_delete_(post_type) action-hook . WP 4.7.0
Fires immediately after a single post is deleted or trashed via the REST API.
They dynamic portion of the hook name, $this->post_type, refers to the post type slug.
Usage
add_action( 'rest_delete_(post_type)', 'action_function_name_5873', 10, 3 ); function action_function_name_5873( $post, $response, $request ){ // action... }
- $post(WP_Post)
- The deleted or trashed post.
- $response(WP_REST_Response)
- The response data.
- $request(WP_REST_Request)
- The request sent to the API.
Changelog
Since 4.7.0 | Introduced. |
Where the hook is called
rest_delete_(post_type)
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php 970
do_action( "rest_delete_{$this->post_type}", $post, $response, $request );