我在wordpress网站上遇到了简单的插件问题。简单媒体的开发人员告诉我,这与网站从谷歌cdn拉jquery有关。所以我们基本上评论了所有这些
wp_deregister_script('jquery');
wp_deregister_script('jquery-ui');
//commented them out in addition to the
wp_register_script('jquery'……
wp_register_script('jquery-ui…..
// and instead just have
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-widget');
wp_deregister_script('jquery');
wp_deregister_script('jquery-ui');
我对我网站上的所有文件做了这个,但我仍然得到了跟随错误
wp_register_script('jquery'……
wp_register_script('jquery-ui…..
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-widget');
帮助任何人? :(我正在使用称呼作为我的wordpress主题(转到themeforest查看样本)。
谢谢, Greggy