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
852            *
853            * They dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
854            *
855            * @since 4.7.0
856            *
857            * @param object           $post     The deleted or trashed post.
858            * @param WP_REST_Response $response The response data.
859            * @param WP_REST_Request  $request  The request sent to the API.
860            */
861           do_action( "rest_delete_{$this->post_type}", $post, $response, $request );
862
863           return $response;
864      }
865
866      /**
867       * Determines the allowed query_vars for a get_items() response and prepares
868       * them for WP_Query.
869       *
870       * @since 4.7.0