Last active
May 12, 2019 22:47
-
-
Save sxidsvit/a985114c4bef0818938db84728b311ec to your computer and use it in GitHub Desktop.
Корректное подключение библиотеки jQuery в 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
<?php | |
//Для корректной работы бтблиотеки jQuery в wordpress вместо кода | |
wp_deregister_script('jquery-core'); | |
wp_register_script('jquery-core', 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js', false, false, true); | |
wp_enqueue_script( 'jquery' ) | |
//лучше использовать код | |
wp_deregister_script('jquery-core'); | |
wp_deregister_script('jquery); | |
wp_register_script('jquery-core', 'https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js', false, null, true) | |
wp_register_script('jquery', false, array('jquery-core'), null, true); | |
/* Источники: | |
* (1) https://wiki.pwodev.com/jquery-wordpress-%D0%B8%D0%B7-google/ | |
* (2) https://developers.google.com/speed/libraries/#jquery | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment