/ Published in: PHP
Be sure to check for latest version (http://code.google.com/apis/libraries/devguide.html#jquery)
Expand |
Embed | Plain Text
// swap wordpress jquery for google hosted cdn function swap_jquery_for_cdn() { wp_deregister_script('jquery'); wp_enqueue_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"), false, '1.6.4', true); } add_action('wp_enqueue_scripts', 'swap_jquery_for_cdn');
You need to login to post a comment.
