ssnepenthe / recaptcha-for-wp
Invisible reCAPTCHA integration for the WordPress login.
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 4
Type:wordpress-plugin
Requires
- php: >=5.4
- composer/installers: ^1.0
- ssnepenthe/wp-requirements: ^0.1
Requires (Dev)
- psy/psysh: ^0.8
- symfony/var-dumper: ~2.7|~3.0
This package is auto-updated.
Last update: 2024-10-09 14:24:41 UTC
README
Invisible reCAPTCHA integration for the WordPress login.
Requirements
WordPress 4.7 or later, PHP 5.4 or later and Composer.
Installation
$ composer require ssnepenthe/recaptcha-for-wp
OR
$ cd /path/to/project/wp-content/plugins
$ git clone git@github.com:ssnepenthe/recaptcha-for-wp.git
$ cd recaptcha-for-wp
$ composer install
Usage
To use this plugin you must provide API keys from reCAPTCHA.
First sign up for reCAPTCHA, register your site for Invisible reCAPTCHA and get your keys.
Then activate the plugin and provide your keys under settings > reCAPTCHA
.
That's it! Invisible reCAPTCHA is automatically enabled for the login, lost password and registration forms.
Configuration
Plugin settings can be overridden via the following constants:
RFW_LOGIN
: whether to integrate reCAPTCHA with the login form. Must be a string, "1" (for enabled) or "0" (for disabled).
RFW_LOSTPASSWORD
: whether to integrate reCAPTCHA with the lost password form. Must be a string, "1" (for enabled) or "0" (for disabled).
RFW_REGISTRATION
: whether to integrate reCAPTCHA with the registration form. Must be a string, "1" (for enabled) or "0" (for disabled).
RFW_SECRET_KEY
: the "secret" API key provided by reCAPTCHA. Must be a string.
RFW_SITE_KEY
: the "site" API key provided by reCAPTCHA. Must be a string.
Considerations
If you have any browser extensions installed for privacy (such as Privacy Badger) you may want to whitelist your domain.
If you enter either of your API keys incorrectly, it is possible to get locked out of your site. You should be able to work around this by setting the corresponding constant.
Compatibility
The plugin is tested with the Google Authenticator plugin and the GA Per-User Prompt plugin.
It should work, but is not tested with any other plugins that modify wp-login.php
.