akismet_request_args, $comment, comment-check

akismet_request_args, $comment, comment-check

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('akismet_request_args, $comment, comment-check') is found 1 times:

  • /wp-content/plugins/akismet/class.akismet.php line 540
    		 *
    		 * @param array $comment An array of request data.
    		 * @param string $endpoint The API endpoint being requested.
    		 */
    		$comment = apply_filters( 'akismet_request_args', $comment, 'comment-check' );
    
    		$response = self::http_post( self::build_query( $comment ), 'comment-check' );
    
    		do_action( 'akismet_comment_check_response', $response );
    
    		$commentdata['comment_as_submitted'] = array_intersect_key( $comment, self::$comment_as_submitted_allowed_keys );