Home / Admin / How to Set the Language for Google reCAPTCHA
Duplicate Snippet

Embed Snippet on Your Site

How to Set the Language for Google reCAPTCHA

<10
Code Preview
php
<?php
/**
 * Set the language for Google reCAPTCHA.
 *
 * @link https://wpforms.com/developers/how-to-set-the-language-for-google-recaptcha/
 */
function wpf_dev_recaptcha_language( $url ) {
        // Set the language code to FR (French)
	return esc_url_raw( add_query_arg( array( 'hl' => 'fr '), $url ) );
}
add_filter( 'wpforms_frontend_recaptcha_url', 'wpf_dev_recaptcha_language', 10, 1);

Comments

Add a Comment