如果插件写得很好(或主题),那么就没有理由担心jquery加载重复。
如果主题使用标题。php加载jquery,然后您就做错了,应该使用enqueue scripts 要加载jQuery。。。
Wordpress使用wp enqueue script 一次而不是多次声明脚本。
Example of loading scripts the right way:
function sg_theme_js(){
wp_enqueue_script( \'jquery\' );
wp_enqueue_script( \'bootstrap\', \'http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js\', array(\'jquery\'), 3.3, true);
wp_enqueue_script( \'miscscripts\', get_template_directory_uri().\'/js/misc-scripts.js\', array(\'jquery\'), 1.0, true);
}
add_action( \'wp_enqueue_scripts\', \'sg_theme_js\' );
Also...我下载了插件,找到了脚本的加载位置(在推荐1.php中),而插件没有加载jquery-我猜作者假设您的主题正确地包含了jquery(应该是这样的)
SO...
我会搜索您在主题中包含jquery的位置,并使用wp\\u enqueue\\u script函数将其更改为正确的方式