Google ReCapthca | WordPress.org

[ad_1]

Plugin Contributor
Lap

(@lapzor)

I recommend using hCaptcha.

I did some testing on how to add a hCaptcha to HTML forms:

  1. Install and activate the hcaptcha plugin, create a free hCaptcha account and add your credentials in the hCaptcha plugin settings
  2. Add the following code snippet to your website:
add_filter('hf_validate_form', function( $error_code, $form, $data ) {
$result = hcaptcha_verify_post();
if ( null !== $result ) {
$error_code="catcha_failed";
}
return $error_code;
},10,3);

add_filter(
'hf_template_tags',
function( $tags ) {
$tags['hcaptcha'] = do_shortcode( '[hcaptcha]' );
return $tags;
}
);
add_filter( 'hf_validate_form_request_size', '__return_false');
  1. add {{hcaptcha}} to your HTML-Forms fields where you want to show the captcha.

Hope that helps. If you have any questions, please let me know!

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer