Created
October 25, 2018 16:24
-
-
Save amorkovin/9867a1e8b638ac24319522325d4359cf to your computer and use it in GitHub Desktop.
jQuery грузит с серверов Google для 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 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