Skip to content

Instantly share code, notes, and snippets.

@ajithrn
Created October 5, 2015 17:13
Show Gist options
  • Save ajithrn/97fb51e8696baf177519 to your computer and use it in GitHub Desktop.
Save ajithrn/97fb51e8696baf177519 to your computer and use it in GitHub Desktop.
WordPress: Inclide Jquery
/**
* Add jQuery from google cdn
*/
function add_jquery_script() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', '', false);
wp_enqueue_script( 'jquery' );
}
add_action('wp_enqueue_scripts', 'add_jquery_script');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment