Created
June 11, 2018 08:28
-
-
Save frkosk/af9821fa2b01a56759c0c7277ef02402 to your computer and use it in GitHub Desktop.
Change the language of reCAPTCHA in Contact Form 7 (Wordpress)
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
| <?php | |
| 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' => 'sk-SK' ), $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