
Add Google reCaptcha to the comments section on blog posts. Additional hooks for adding reCaptcha…
| Author: | Jim Valentine (profile at wordpress.org) |
| WordPress version required: | 5.0 |
| WordPress version tested: | 5.8.1 |
| Plugin version: | 1.0.0 |
| Added to WordPress repository: | 30-10-2021 |
| Last updated: | 30-10-2021
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 0 |
| Rated by: | 0 |
| Plugin URI: | https://f13.dev/wordpress-plugins/wordpress-p... |
| Total downloads: | 752 |
![]() Click to start download |
|
Add Google reCaptcha to the comments section on blog posts. Requires Google reCaptcha v2 Checkbox API key.
Simple configuration via the admin settings page:
* reCaptcha public key
* reCaptcha private key
* enable reCaptcha for (Everyone | Visitors | Nobody [disabled])
Additional hooks for programmers:
$v = apply_filters(‘f13_recaptcha_add’);
Will place a reCaptcha checkbox in the desired place.
$validate = apply_filters(‘f13_recaptcha_validate’);
if (!empty($validate)) {
$v = $validate
// reCaptcha failed
} else {
// reCaptcah passed
}
