Created
May 24, 2017 10:33
-
-
Save Farmatique/0b7053b224f8aef3a505fa2273a839ef to your computer and use it in GitHub Desktop.
Change jquery in wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function modify_jquery_version() { | |
| if (!is_admin()) { | |
| wp_deregister_script('jquery'); | |
| wp_register_script('jquery', | |
| 'https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js', false, '2.1.s'); | |
| wp_enqueue_script('jquery'); | |
| } | |
| } | |
| add_action('init', 'modify_jquery_version'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment