Created
August 2, 2013 14:28
-
-
Save jonbellah/6140275 to your computer and use it in GitHub Desktop.
Deregister jQuery with wp_deregister_script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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