升级旧主题的jQuery
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了升级旧主题的jQuery相关的知识,希望对你有一定的参考价值。
Eventually, you're going to need to style this website so here are a few tricks
/** ******** ******** ******** ******** ******** ******** ******** ******** * TITLE: YOO THEME STYLING OF CSS, JS, AND FONTS * DESCRIPTION: Eventually, you're going to need to style this website so here are a few tricks * * http://codex.wordpress.org/Function_Reference/wp_enqueue_script * http://yootheme.com/themes/documentation/customizing/add-new-css-js-or-fonts */ function upgrade_jquery(){ //using a newer version of jQuery will break stuff in WP admin if (!is_admin()) { //Remove existing jquery wp_deregister_script('jquery'); wp_dequeue_script('jquery'); //Add new jQuery wp_register_script('jquery', '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js', false, '2.1.1'); wp_enqueue_script('jquery'); wp_register_script('jquery-migrate', 'http://code.jquery.com/jquery-migrate-1.2.1.min.js', false, '1.2.1'); wp_enqueue_script('jquery-migrate'); } } add_action( 'wp_enqueue_scripts', 'upgrade_jquery', 100 );
以上是关于升级旧主题的jQuery的主要内容,如果未能解决你的问题,请参考以下文章
我升级到 Android Studio 2.3.3,一个旧的、无错误的程序现在给出错误:“片段应该是静态的......”
jquerymobile 主题 .html 动态 div 替换 jquery