Skip to content

Instantly share code, notes, and snippets.

@amorkovin
Created October 25, 2018 16:24
Show Gist options
  • Save amorkovin/9867a1e8b638ac24319522325d4359cf to your computer and use it in GitHub Desktop.
Save amorkovin/9867a1e8b638ac24319522325d4359cf to your computer and use it in GitHub Desktop.
jQuery грузит с серверов Google для WordPress
function add_styles_scripts(){
//Jquery
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js', array(), null);
wp_enqueue_script('jquery');
}
add_action( 'wp_enqueue_scripts', 'add_styles_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment