Created
November 7, 2013 08:24
-
-
Save funteractive/7351042 to your computer and use it in GitHub Desktop.
組み込みのjQueryを外してGoogle APIのjQueryを読み込む
This file contains hidden or 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 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