/ Published in: CSS
Load latest version of jQuery from Google Libraries API and de-register Wordpress version
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
if( !is_admin()){ wp_deregister_script('jquery'); wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"), false, '1.7.2'); wp_enqueue_script('jquery'); }
URL: http://www.kevinleary.net/always-load-latest-version-jquery-wordpress/