Code-Snippets-Functions/Execute a function on a child site/Contact Form 7/disabling-google-recaptcha-except-on-contact-page.txt

7 lines
286 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

add_filter(wpcf7_recaptcha_actions, wpcf7_recaptcha_only_contact);
function wpcf7_recaptcha_only_contact( $actions ) {
if ( is_page(contact) ) { // Replace contact with your contact page slug
return $actions;
}
return array(); // Dont load it anywhere else
}