Created
November 12, 2013 01:05
-
-
Save techjewel/7423565 to your computer and use it in GitHub Desktop.
change default source of jQuery in wordpress
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
<?php | |
function add_scripts() { | |
wp_deregister_script( 'jquery' ); | |
wp_register_script( 'jquery', | |
'//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js'); | |
wp_enqueue_script( 'jquery' ); | |
} | |
add_action('wp_enqueue_scripts', 'add_scripts'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment