WPCF7などでGoogle Recapthaを有効にすると、フォームの無いページでも有効化され、ページスピードが落ちてしまいます。その対策方法です。
目次(クリックでジャンプ)
【WP】お問い合わせページのみでrecapthaを有効化する
functions.php
で以下のコードを追記してください。
array( 'contact','estimate' )
の部分は任意のページのスラッグに変更してください。
//リキャプチャを特定ページで有効化
function load_recaptcha_js() {
if(!is_page(array( 'contact','estimate' ))) {
wp_deregister_script( 'google-recaptcha' );
}
}
add_action( 'wp_enqueue_scripts', 'load_recaptcha_js',100 );