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
266                if ( $category_names && ! is_wp_error( $category_names ) ) {
267                     foreach ( $category_names as $category_name ) {
268                          $comment['comment_context'][] = $category_name;
269                     }
270                }
271           }
272
273           $response = self::http_post( Akismet::build_query( $comment ), 'comment-check' );
274
275           do_action( 'akismet_comment_check_response', $response );
276
277           $commentdata['comment_as_submitted'] = array_intersect_key( $comment, self::$comment_as_submitted_allowed_keys );
278
279           // Also include any form fields we inject into the comment form, like ak_js
280           foreach ( $_POST as $key => $value ) {
281                if ( is_string( $value ) && strpos( $key, 'ak_' ) === 0 ) {
282                     $commentdata['comment_as_submitted'][ 'POST_' . $key ] = $value;
283                }
284           }