WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 113 | else |
| 114 | $comment["$key"] = ''; |
| 115 | } |
| 116 | |
| 117 | $post = get_post( $comment['comment_post_ID'] ); |
| 118 | $comment[ 'comment_post_modified_gmt' ] = $post->post_modified_gmt; |
| 119 | |
| 120 | $response = self::http_post( Akismet::build_query( $comment ), 'comment-check' ); |
| 121 | |
| 122 | do_action( 'akismet_comment_check_response', $response ); |
| 123 | |
| 124 | self::update_alert( $response ); |
| 125 | |
| 126 | $commentdata['comment_as_submitted'] = array_intersect_key( $comment, array( 'blog' => '', 'blog_charset' => '', 'blog_lang' => '', 'blog_ua' => '', 'comment_agent' => '', 'comment_author' => '', 'comment_author_IP' => '', 'comment_author_email' => '', 'comment_author_url' => '', 'comment_content' => '', 'comment_date_gmt' => '', 'comment_tags' => '', 'comment_type' => '', 'guid' => '', 'is_test' => '', 'permalink' => '', 'reporter' => '', 'site_domain' => '', 'submit_referer' => '', 'submit_uri' => '', 'user_ID' => '', 'user_agent' => '', 'user_id' => '', 'user_ip' => '' ) ); |
| 127 | $commentdata['akismet_result'] = $response[1]; |
| 128 | |
| 129 | if ( isset( $response[0]['x-akismet-pro-tip'] ) ) |
| 130 | $commentdata['akismet_pro_tip'] = $response[0]['x-akismet-pro-tip']; |
| 131 | |