リキャプチャ contact form7以外でバッチを表示させない方法
- 公開日:
- 更新日:
- 文字数:481文字
functions.phpに以下を追加
//ショートコードが存在しなければreCAPTCHAの読み込みをキャンセルする
add_action( 'wp_enqueue_scripts', function (){
global $post;
$valid_recaptcha = false;
$content = get_post()->post_content;
if($content != null){
if(has_shortcode($content, 'contact-form-7')) {
$valid_recaptcha = true;
}
}
if($valid_recaptcha == false){
wp_deregister_script( 'google-recaptcha' );
}
}, 100);