Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: 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
269            )
270                return true;
271      }
272      return false;
273 }
274
275
276 function wp_delete_comment($comment_id) {
277      global $wpdb;
278      do_action('delete_comment', $comment_id);
279
280      $comment = get_comment($comment_id);
281
282      if ( ! $wpdb->query("DELETE FROM $wpdb->comments WHERE comment_ID='$comment_id' LIMIT 1") )
283           return false;
284
285      $post_id = $comment->comment_post_ID;
286      if ( $post_id && $comment->comment_approved == 1 )
287           wp_update_comment_count($post_id);