Skip to content

Instantly share code, notes, and snippets.

@frkosk
Created June 11, 2018 08:28
Show Gist options
  • Select an option

  • Save frkosk/af9821fa2b01a56759c0c7277ef02402 to your computer and use it in GitHub Desktop.

Select an option

Save frkosk/af9821fa2b01a56759c0c7277ef02402 to your computer and use it in GitHub Desktop.
Change the language of reCAPTCHA in Contact Form 7 (Wordpress)
<?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