Imperative-Ideas

Google CDN jQuery

Oct 11th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function jquery_cdn() {
  2.    if (!is_admin()) {
  3.       wp_deregister_script('jquery');
  4.       wp_register_script('jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js', false, '1.9.1');
  5.       wp_enqueue_script('jquery');
  6.    }
  7. }
  8. add_action('init', 'jquery_cdn', 99);
Add Comment
Please, Sign In to add comment