Skip to content

Instantly share code, notes, and snippets.

@charliesjc
Last active July 19, 2021 06:32
Show Gist options
  • Save charliesjc/68fdb39e9d8bb4a7ace71a5e90d06d7f to your computer and use it in GitHub Desktop.
Save charliesjc/68fdb39e9d8bb4a7ace71a5e90d06d7f to your computer and use it in GitHub Desktop.
Remove Google reCaptcha badge on Wordpress
<?php
function semper_load_recaptcha_badge() {
if ( !is_page( array( 'checkout', 'login' ) ) ) {
wp_dequeue_script('google-recaptcha');
}
}
add_action( 'wp_enqueue_scripts', 'semper_load_recaptcha_badge', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment