You just need to add this function to the theme theme.php file and do it all. It really works for me. You can change the translation language by changing the country code in the h1 parameter. Here I use es here to translate into Spanish.
function wptricks24_recaptcha_scripts () {wp_deregister_script ('google-recaptcha');
$url = 'https://www.google.com/recaptcha/api.js'; $url = add_query_arg( array( 'onload' => 'recaptchaCallback', 'render' => 'explicit', 'hl' => 'es'), $url ); // es is the language code for Spanish language wp_register_script( 'google-recaptcha', $url, array(), '2.0', true ); } add_action( 'wpcf7_enqueue_scripts', 'wptricks24_recaptcha_scripts', 11 );
source share