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 |
---|---|
307 | * @since 5.3.1 |
308 | * |
309 | * @param array $comment An array of request data. |
310 | * @param string $endpoint The API endpoint being requested. |
311 | */ |
312 | $comment = apply_filters( 'akismet_request_args', $comment, 'comment-check' ); |
313 |
|
314 | $response = self::http_post( self::build_query( $comment ), 'comment-check' ); |
315 |
|
316 | do_action( 'akismet_comment_check_response', $response ); |
317 |
|
318 | $commentdata['comment_as_submitted'] = array_intersect_key( $comment, self::$comment_as_submitted_allowed_keys ); |
319 |
|
320 | // Also include any form fields we inject into the comment form, like ak_js |
321 | foreach ( $_POST as $key => $value ) { |
322 | if ( is_string( $value ) && strpos( $key, 'ak_' ) === 0 ) { |
323 | $commentdata['comment_as_submitted'][ 'POST_' . $key ] = $value; |
324 | } |
325 | } |