Last active
January 26, 2021 13:57
-
-
Save azizultex/0356d9aa922c97b5d30e to your computer and use it in GitHub Desktop.
Contact Form 7 Google Recaptcha no captcha Translation Support WPML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* add below code in your theme functions.php | |
https://wordpress.org/support/topic/how-to-set-the-recaptcha-language | |
*/ | |
function custom_recaptcha_enqueue_scripts() { | |
wp_deregister_script( 'google-recaptcha' ); | |
$url = 'https://www.google.com/recaptcha/api.js'; | |
$url = add_query_arg( array( | |
'onload' => 'recaptchaCallback', | |
'render' => 'explicit', | |
'hl' => ICL_LANGUAGE_CODE ), $url ); | |
wp_register_script( 'google-recaptcha', $url, array(), '2.0', true ); | |
} | |
add_action( 'wpcf7_enqueue_scripts', 'custom_recaptcha_enqueue_scripts', 11 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment