Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Created August 2, 2013 14:31
Show Gist options
  • Save jonbellah/6140304 to your computer and use it in GitHub Desktop.
Save jonbellah/6140304 to your computer and use it in GitHub Desktop.
Deregister jQuery with wp_deregister_script
function theme_deregister_scripts() {
wp_deregister_script( 'jquery' );
}
add_action( 'wp_enqueue_scripts', 'theme_deregister_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment