wp_localize_script | Wiki | PWODEV
, 02.08.2018 12:59

Google jQuery WordPress — как правильно подключить

Скрипт как правильно подключить из CDN Google библиотеку jQuery WordPress: add_action('wp_enqueue_scripts', 'front_scripts'); function front_scripts(){ // add jQuery to footer and from Google global $google_jQuery; if(!$google_jQuery) { $google_jQuery = 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js'; wp_deregister_script('jquery-core'); wp_register_script('jquery-core', $google_jQuery, false, null, true); ...