purevtsooj

Modify jQuery on Wordpress

Jun 16th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function modify_jquery() {
  2.     if (!is_admin()) {
  3.         // comment out the next two lines to load the local copy of jQuery
  4.         wp_deregister_script('jquery');
  5.         wp_register_script('jquery', 'https://code.jquery.com/jquery-1.12.4.min.js', false, '1.12.4');
  6.         wp_enqueue_script('jquery');
  7.     }
  8. }
  9. add_action('init', 'modify_jquery');
Advertisement
Add Comment
Please, Sign In to add comment