Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_delete_comment

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
1013           /**
1014            * Fires after a comment is deleted via the REST API.
1015            *
1016            * @since 4.7.0
1017            *
1018            * @param WP_Comment       $comment  The deleted comment data.
1019            * @param WP_REST_Response $response The response returned from the API.
1020            * @param WP_REST_Request  $request  The request sent to the API.
1021            */
1022           do_action( 'rest_delete_comment', $comment, $response, $request );
1023
1024           return $response;
1025      }
1026
1027      /**
1028       * Prepares a single comment output for response.
1029       *
1030       * @since 4.7.0
1031       *