Im using wordpress vanilla 2.8 - NOT MU.
How do I embed recaptcha in my login page. Currently it has options to only embed itself in registration form and comment form. I want it on my login page as well.
Please help
Im using wordpress vanilla 2.8 - NOT MU.
How do I embed recaptcha in my login page. Currently it has options to only embed itself in registration form and comment form. I want it on my login page as well.
Please help
Hopefully you have solved this problem by now but in the event that someone else needs this information, I had developed a custom form in WordPress so existing plugins were not suitable for my needs.
I basically followed the instruction on the reCAPTCHA site for PHP: http://recaptcha.net/plugins/php/
I had to add the following code at the top of the page to use the clean theme because I had stylesheet issues with the default theme:
<script>
var RecaptchaOptions = {
theme : 'clean',
tabindex : 2
};
</script>This topic has been closed to new replies.