Skip to content

Instantly share code, notes, and snippets.

@ricksportel
Created April 27, 2016 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricksportel/3e3051324010a7ff1c4ec0badfb03225 to your computer and use it in GitHub Desktop.
Save ricksportel/3e3051324010a7ff1c4ec0badfb03225 to your computer and use it in GitHub Desktop.
<?php
//* Dequeue scripts
add_action( 'wp_enqueue_scripts', 'child_themename_dequeue_scripts' );
function child_themename_dequeue_scripts() {
//* Plugins scripts:
// Contact Form 7 scripts on pages without forms
if( !is_page( array( 'contact' ) ) ) {
wp_dequeue_script( 'contact-form-7' );
}
}
@ricksportel
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment