Skip to content

Instantly share code, notes, and snippets.

@funteractive
Created November 7, 2013 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funteractive/7351042 to your computer and use it in GitHub Desktop.
Save funteractive/7351042 to your computer and use it in GitHub Desktop.
組み込みのjQueryを外してGoogle APIのjQueryを読み込む
<?php
function load_cdn() {
if ( !is_admin() ) {
wp_deregister_script( 'jquery' );
wp_enqueue_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', 'jquery' );
}
}
add_action( 'init', 'load_cdn' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment