更改联系表格7 Wordpress的Recaptcha v2的语言

时间:2018-11-23 07:23:23

标签: wordpress recaptcha contact-form-7

我在联系表7插件中使用了Recaptcha v2。我想根据我网站上的语言设置(我使用qtranslate插件)来更改recaptcha上的消息“我不是机器人”。我找到了一些与下面的代码类似的解决方案。

remove_action( 'wpcf7_enqueue_scripts', 'wpcf7_recaptcha_enqueue_scripts' );
add_action( 'wpcf7_enqueue_scripts', 'custom_recaptcha_enqueue_scripts' );

function custom_recaptcha_enqueue_scripts()
{
    // $hl = get_locale();
    // $hl = ($hl == "vi") ? "vi" : "en";
    wp_deregister_script('google-recaptcha');
    $url = 'https://www.google.com/recaptcha/api.js';
    $url = add_query_arg(array(
        'hl' => qtranxf_getLanguage(),
        'onload' => 'recaptchaCallback',
        'render' => 'explicit',
        ), $url);
    wp_register_script('google-recaptcha', $url, array(), '2.0', true);
}

但是,直到我更改浏览器的语言,它才起作用。是否有任何解决方案可以根据Webiste语言(而不是浏览器语言)自动更改Recaptcha消息的语言。预先谢谢你。

0 个答案:

没有答案
相关问题