/** * To display a captcha, use the show() method passing both the * captcha type (see docs) and your public api key. The method * returns a string that you can either append to your form * string or echo/print, depending on what hook you are using * to display it. */ $html = WP_Members_Captcha::show( $type, $public_key ); /** * To validate a captcha upon form submission, use the validate() * method passing both the captcha type (see docs) and your * private/secret api key. This returns a true|false boolean. */ $passed = WP_Members_Captcha::validate( $type, $private_key );
Not sure what to do with this code?
You're not a "coder" and don't know what to do? Don't worry! Code Snippets are the basic building blocks of WordPress customization, and once you know the basics, they are simple to use.
Here are some free articles to get you started:
- Using Code Snippets from the Site
- Using a code snippets plugin
- The functions.php File
- Create a plugin file for custom functions
- Create a child theme
- Do not modify plugin files!
For "hands on" help, consider a plugin support subscription or the Pro Bundle.