HighLab

reCAPTCHAで特定のページだけ表示

  • 公開日:
  • 更新日:
  • 文字数:133文字
add_action( 'wp_enqueue_scripts', function() {
    if(is_page('contact')) return;
    wp_deregister_script( 'google-recaptcha' );
});