We all know that jQuery is included with WordPress by default, I wanted a way to load my pages quicker, save some bandwidth.
Ok here goes
Add this to your child themes functions.php
if ( !is_admin() ) ://load scripts for non admin pages
wp_deregister_script('jquery');//deregister wordpress jquery
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.3.2', true);//register google hosted jquery
wp_enqueue_script('jquery');//enqueue jquery
endif;





Do you have a word in Finland for “Holy Crap”? Because this website is really really great. This is Craig from over there at Theme Hybrid.
Very nice job one of the better Hybrid sites I have seen. Nice and valid as well.
My only other question is: Does it get cold in Finland?
Thanks!
Awesome
Craig MacMillan´s last blog ..The Tremperskill Boys | Catskill Mountains New York
HI Craig.
Well we are trying to keep the polar bears from our door all the time…
Thanks for the compliment.
Well yes I suppose it can get cold here, you have to remember Finland is the place that is cold outside but warm inside….
We will be releasing some child-themes very soon, so stay tuned if you like what we do…
Thanks man for this hack. You save me a lot of time.