Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function modify_jquery() {
- if (!is_admin()) {
- // comment out the next two lines to load the local copy of jQuery
- wp_deregister_script('jquery');
- wp_register_script('jquery', 'https://code.jquery.com/jquery-1.12.4.min.js', false, '1.12.4');
- wp_enqueue_script('jquery');
- }
- }
- add_action('init', 'modify_jquery');
Advertisement
Add Comment
Please, Sign In to add comment