Created
February 4, 2019 10:37
-
-
Save muks999/edee27a109fd74368ba21d30b7999c6e to your computer and use it in GitHub Desktop.
Отключаем сообщение «JQMIGRATE: Migrate is installed, version 1.4.1»
This file contains 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
add_action('wp_default_scripts', function ($scripts) { | |
if (!empty($scripts->registered['jquery'])) { | |
$scripts->registered['jquery']->deps = array_diff($scripts->registered['jquery']->deps, ['jquery-migrate']); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
простой сниппет, который можно добавить в functions.php нашей темы