我使用此脚本命令来显示google recaptcha。但它没有显示图像框来选择合适的图片。我默认听到声音。
我使用php + wordpress + avada主题。
问题:我做错了什么或忘记宣布直接显示视觉图像? 这里编码我使用recaptcha的地方
<?php if( Avada()->settings->get( 'recaptcha_public' ) && Avada()->settings->get( 'recaptcha_private' ) ): ?>
<div class="g-recaptcha" data-type="audio" data-theme="<?php echo Avada()->settings->get( 'recaptcha_color_scheme' ); ?>" data-sitekey="<?php echo Avada()->settings->get( 'recaptcha_public' ); ?>"></div>
<script type="text/javascript"
src="https://www.google.com/recaptcha/api.js?hl=<?php echo get_locale(); ?>">
</script>
<?php endif; ?>
答案 0 :(得分:1)
OEPS。我现在看到有什么问题...在原始代码中data-type =“audio”必须改为:data-type =“image”抱歉..没看到那个。