WordPress : Loading jQuery from the Google CDN

add_action( 'init', 'jquery_register' );
function jquery_register() {
if ( !is_admin() ) {
    wp_deregister_script( 'jquery' );
    wp_register_script( 'jquery', ( 'http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js' ), false, null, true );
    wp_enqueue_script( 'jquery' );
   }
}
Processing your request, Please wait....

No Responses to “WordPress : Loading jQuery from the Google CDN”

Comments (Your Comments)

Leave a Reply

You must be logged in to post a comment.