reCaptcha by BestWebSoft
by bestwebsoft 3.9 (391 reviews)

reCaptcha by BestWebSoft

Protect WordPress website forms from spam entries with Google reCAPTCHA.

reCaptcha by BestWebSoft ranks #337 among WordPress.org plugins with 100,000+ active installations, is #18 of 1,576 in the Authentication category, a 3.9/5 rating from 391 reviews, and was last updated Apr 24, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 7.0.4 (Current: 7.1)
v1.87 Current Version v1.87
Updated 4 months ago Last Update on 24 Apr, 2026
Refreshed 12 hours ago Last Refreshed on
#18 of 1,576 in Authentication Top 1% by installs Downloads -29.4% this week
View on WordPress.org
Rank
#337
No change
Active Installs
100K+
-41.9%
KW Avg Position
5.2
No change
Downloads
6.8M
+260 today
Support Resolved
100%
No change
Rating
78%
Review 3.9 out of 5
3.9 (391 reviews)

Next Milestone 200K

Total Progress 71.5%
100K+ 200K+
51
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 28,492 more installs to reach 200K+

Rank Changes

317 327 337 347 357 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
317 327 338 348 358 31-08-2026 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
Current #337
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

200 250 300 350 400 450 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
200 250 300 350 400 450 500 550 31-08-2026 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

3.9
391 reviews
Overall 78%
5
266 (68%)
4
15 (4%)
3
12 (3%)
2
16 (4%)
1
82 (21%)

Support Threads Overview

Resolved
Unresolved
4
Total Threads
4
Resolved
0
Unresolved
100%
Resolution Rate

Security History

Source: WPVulnerability

5 known vulnerabilities on record · 1 in the last 24 months · checked 1 week ago

  1. reCaptcha by BestWebSoft [google-captcha] < 1.79

    CVE-2025-24628 · Fixed in v1.79

  2. reCaptcha by BestWebSoft [google-captcha] < 1.28

    CVE-2017-2171 · Fixed in v1.28

  3. reCaptcha by BestWebSoft [google-captcha] < 1.28

    Fixed in v1.28

  4. reCaptcha by BestWebSoft [google-captcha] < 1.13

    CVE-2015-0890 · Fixed in v1.13

  5. reCaptcha by BestWebSoft [google-captcha] < 1.28

    Fixed in v1.28

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners who want to block spam submissions on forms like login, registration, comments, and contact forms. It solves this by adding Google reCAPTCHA (Version 3, Version 2, or Invisible) verification to those forms so only real people can submit them.

  • Add reCaptcha to login/registration forms
  • Add reCaptcha to comments form
  • Add reCaptcha to Contact Form
  • Allowlist IP addresses
  • Hide reCaptcha for certain user roles
  • Supports reCAPTCHA v2, v3, Invisible
  • Hide reCaptcha Badge
  • Force Strong Passwords

Frequently Asked Questions

Common questions about reCaptcha by BestWebSoft

Follow the next steps in order to get and enable reCaptcha protection using the official Google Captcha keys: 1. Open your Wordpress admin dashboard. 2. Navigate to the plugin Settings page. 3. Click the "Get the API Keys" link. 4. Enter your domain name and click "Create Key" button. 5. You will see your public and private keys. Copy them and paste to the appropriate fields on plugin Settings page. 6. Save changes.
You should go to the Settings page and select the roles, for which you want to hide reCaptcha. Then you must click "Save Changes" button.
Follow the next steps in order to change the appearance of the reCaptcha: 1. Open your Wordpress admin dashboard. 2. Navigate to the plugin Settings page. 3. Select reCAPTCHA version. 4. Find the "Theme" option (only available for versions 1 and 2) and select the necessary style from the drop-down list. 5. Save changes and check the result.
You might have a theme where "comments.php" is coded incorrectly. Wordpress version matters. (WP2 series): Make sure that you theme contains a tag <?php do_action('comment_form', $post->ID); ?> inside the file /wp-content/themes/[your_theme]/comments.php. Most WP2 themes already have it. The best place to put this tag is before the comment text area, you can move it up if it is below the comment text area. (WP3 series): WP3 has a new function comment_form inside of /wp-includes/comment-template.php. Your theme is probably not up-to-date to call that function from "comments.php". WP3 theme does not need the code line do_action('comment_form'… inside of /wp-content/themes/[your_theme]/comments.php. Instead it uses a new function call inside of "comments.php": <?php comment_form(); ?> If you have WP3 and captcha is still missing, make sure your theme has <?php comment_form(); ?> inside of /wp-content/themes/[your_theme]/comments.php (please check the Twenty Ten theme’s "comments.php" for proper example).
It depends on the comments form. If the hook call by means of which captcha works ('after_comment_field' or something like this) is present in the file comments.php, you can change captcha positioning by moving this hook call. Please find the file 'comments.php' in the theme and change position of the line
or any similar line - place it under the Submit button. In case there is no such hook in the comments file of your theme, then, unfortunately, this option is not available. Add reCaptcha plugin to a custom form on your WordPress website Follow the instructions below in order to add reCaptcha plugin to your custom PHP or HTML form: 1. Install the reCaptcha plugin and activate it. 2. (Optional) If you would like to have an ability to enable and disable the reCAPTCHA for your custom form on the plugin settings page, please add the following code to the 'functions.php' file of your theme: function add_custom_recaptcha_forms( $forms ) { $forms['my_custom_form'] = array( "form_name" => "Custom Form Name" ); return $forms; } add_filter( 'gglcptch_add_custom_form', 'add_custom_recaptcha_forms' ); In this example, 'my_custom_form' is a slug of your custom form. Please don't use the following form slugs since they are predefined by plugin settings: login_form, registration_form, reset_pwd_form, comments_form, contact_form, cf7, si_contact_form, jetpack_contact_form, sbscrbr, bbpress_new_topic_form, bbpress_reply_form, buddypress_register, buddypress_comments, buddypress_group, woocommerce_login, woocommerce_register, woocommerce_lost_password, woocommerce_checkout, wpforo_login_form, wpforo_register_form, wpforo_new_topic_form, wpforo_reply_form. - Save file changes; - Go to the "Settings" tab on the plugin settings page (Admin Dashboard -> reCaptcha); If everything is OK, you will see your form in 'Enable reCAPTCHA for' => 'Custom Forms' (with labels which you specified in the "gglcptch_add_custom_form" hook call function). - Enable it and configure form options as you need; - Click "Save Changes" button; If you don't add this code, no option for your custom form will be displayed on the plugin settings page and the reCAPTCHA will be always displayed in your custom form. Open the file with the form (where you would like to add reCAPTCHA); Find a place to insert the code for the reCAPTCHA output; If you completed the instructions in p. 2, then you should add: In this example, the second parameter is a slug of your custom form. Otherwise, insert the following line: <?php echo apply_filters( 'gglcptch_display_recaptcha', '' ); ?> After that, you should add the following lines to the function of the entered data checking. If you completed the instructions in p. 2, then you should add: In this example, the third parameter is a slug of your custom form. Otherwise, insert the following lines: <?php $check_result = apply_filters( 'gglcptch_verify_recaptcha', true, 'string' ); if ( true === $check_result ) { /* the reCAPTCHA answer is right */ /* do necessary action */ } else { /* the reCAPTCHA answer is wrong or there are some other errors */ echo $check_result; /* display the error message or do other necessary actions in case when the reCAPTCHA test was failed */ } ?> If there is a variable in the check function responsible for the errors output, you can concatenate variable $check_result to this variable. If the 'gglcptch_verify_recaptcha' filter hook returns 'true', it means that you have entered the reCAPTCHA answer properly. In all other cases, the function will return the string with the error message. If you have followed all steps, but the problem remains, we can help you to configure your reCaptcha custom form. This will be a paid service since there are a lot of different custom forms and the code should be inserted individually into each of them, so we need some time to study each unique case.
Please make sure that the problem hasn't been discussed yet on our forum (https://support.bestwebsoft.com). If no, please provide the following data along with your problem's description: - The link to the page where the problem occurs - The name of the plugin and its version. If you are using a pro version - your order number. - The version of your WordPress installation - Copy and paste into the message your system status report. Please read more here: Instruction on System Status

More plugins by bestwebsoft

Sign In / Register

You need to sign in or register to use this feature.