Skip to content

Instantly share code, notes, and snippets.

@habibmac
Created June 6, 2012 16:19
Show Gist options
  • Save habibmac/2883013 to your computer and use it in GitHub Desktop.
Save habibmac/2883013 to your computer and use it in GitHub Desktop.
WP: Loading jQuery from the Google CDN
// even more smart jquery inclusion :)
add_action( 'init', 'jquery_register' );
// register from google and for footer
function jquery_register() {
if ( !is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', ( 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' ), false, null, true );
wp_enqueue_script( 'jquery' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment