php 注册新版本的jquery与CDN

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 注册新版本的jquery与CDN相关的知识,希望对你有一定的参考价值。

# Include in functions.php
/**
 * Register new version of jquery with CDN
 */
 function replace_core_jquery_version() {
  wp_deregister_script( 'jquery' );
  wp_register_script( 'jquery', "https://code.jquery.com/jquery-3.1.1.min.js", array(), '3.1.1' );
}
add_action( 'wp_enqueue_scripts', 'replace_core_jquery_version' );

以上是关于php 注册新版本的jquery与CDN的主要内容,如果未能解决你的问题,请参考以下文章