我有一个wordpress插件,可自动将jQuery“file”行添加到我的网站标题中,例如
<link rel='stylesheet' id='wp-postratings-css' href='http://domain.com/wp-content/plugins/wp-postratings/postratings-css.css?ver=1.8' type='text/css' media='all' />
我不需要这一行,因为它引用旧版本的jQuery加上我之前已经包含了jQuery文件。我试图禁用以下默认的wordpress功能“ wp_enqueue_script ”,“ wp_print_scripts('jquery')”,但它没有用。
有什么想法吗?感谢
答案 0 :(得分:2)
如果你添加你的functions.php wp_enqueue_script('jquery');
本质上这告诉wordpress只加载jQuery一次并忽略任何其他实例。
从外部源加载您自己的jquery(例如这里是google)
wp_deregister_script('jquery');
wp_register_script('jquery', "https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js", false, null);
wp_enqueue_script('jquery');