Skip to content

Instantly share code, notes, and snippets.

@pascalwacker
Created October 4, 2016 15:28
Show Gist options
  • Save pascalwacker/d9c1ad63e3ec464610222fb50015c48c to your computer and use it in GitHub Desktop.
Save pascalwacker/d9c1ad63e3ec464610222fb50015c48c to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'load_old_jquery_fix', 100 );
function load_old_jquery_fix() {
if ( ! is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', ( "//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" ), false, '1.11.3' );
wp_enqueue_script( 'jquery' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment