Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_delete_{$this->post_type}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1086            *  - `rest_delete_page`
1087            *  - `rest_delete_attachment`
1088            *
1089            * @since 4.7.0
1090            *
1091            * @param WP_Post          $post     The deleted or trashed post.
1092            * @param WP_REST_Response $response The response data.
1093            * @param WP_REST_Request  $request  The request sent to the API.
1094            */
1095           do_action( "rest_delete_{$this->post_type}", $post, $response, $request );
1096
1097           return $response;
1098      }
1099
1100      /**
1101       * Determines the allowed query_vars for a get_items() response and prepares
1102       * them for WP_Query.
1103       *
1104       * @since 4.7.0