PHP 在WordPress主题中包含jQuery

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在WordPress主题中包含jQuery相关的知识,希望对你有一定的参考价值。

	if( !is_admin()){
	   wp_deregister_script('jquery');
	   wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false, '1.3.2');
	   wp_enqueue_script('jquery');
	}

以上是关于PHP 在WordPress主题中包含jQuery的主要内容,如果未能解决你的问题,请参考以下文章

在WordPress主题中包含jQuery

在主题Wordpress中包含jquery

PHP 在Wordpress中包含jQuery

在 functions.php (WordPress) 中包含 ACF

在 WordPress 中包含一个 jQuery 插件

如何在自定义 .php 文件中包含 WordPress 函数?