/** * The wpmem_captcha filter allows you to filter the HTML * for any of the available captcha methods in the plugin. * It filters the entire HTML string that applies the * captcha. * * NOTE: This filters the pre-submitted form HTML for the * captcha (which is essentially the necessary JavaScript). * It does NOT affect anything on the form validation side * of things, so you cannot use this alone to change the * capctha type. That is a more involved process. You * can, however, use this to customize the HTML of the * existing captcha type you are using (which is what it * is intended for). */ add_filter( 'wpmem_captcha', function( $captcha_html ) { // your custom HTML for the captcha here. return $captcha_html; });
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.