Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: akismet_comment_check_response

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
111                else
112                     $comment["$key"] = '';
113           }
114
115           $post = get_post( $comment['comment_post_ID'] );
116           $comment[ 'comment_post_modified_gmt' ] = $post->post_modified_gmt;
117
118           $response = self::http_post( http_build_query( $comment ), 'comment-check' );
119
120           do_action( 'akismet_comment_check_response', $response );
121
122           self::update_alert( $response );
123
124           $commentdata['comment_as_submitted'] = $comment;
125           $commentdata['akismet_result']       = $response[1];
126
127           if ( isset( $response[0]['x-akismet-pro-tip'] ) )
128              $commentdata['akismet_pro_tip'] = $response[0]['x-akismet-pro-tip'];
129