Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/0b7053b224f8aef3a505fa2273a839ef to your computer and use it in GitHub Desktop.
Save Farmatique/0b7053b224f8aef3a505fa2273a839ef to your computer and use it in GitHub Desktop.
Change jquery in wordpress
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