未定义jQuery--某些主题功能不起作用!

时间:2021-01-19 作者:Abdulrazzak

I know that this issue is common and there are many similar questions about it but still my problem is a little different我对WordPress的最新更新有疑问。侧菜单和搜索栏不工作,除非在自定义模式下,浏览器加载迁移jquery版本3。我尝试了所有不同的解决方案(手动加载jquery-WordPress插件-编辑主题代码-添加一些函数来加载带挂钩和不带挂钩的jquery),但都没有成功。如果能听到任何建议,我将不胜感激。Note: slide menu and search bar are parts of the Theme (not a plugin). 提前谢谢你

enter image description here

1 个回复
SO网友:LM28

更新WordPress后,我遇到了类似的问题,请尝试在函数中添加此项。php:

function load_jquery() 
{ 
    wp_register_script(\'mainJquery\', get_template_directory_uri() . \'/assets/js/jQuery.js\', array(\'jquery\'), 1, true);
    wp_enqueue_script(\'mainJquery\'); 
}
add_action(\'wp_enqueue_scripts\', \'load_jquery\');
我只是缺少了数组(\'jquery\'),也许你也一样。。。

相关推荐

最新的Bootstrap能与默认的WordPress jQuery一起正常工作吗?

Wordpress仍然使用jQuery 1.x 因为害怕插件和主题的错误兼容性。他们正在尝试更新它,但您可以看到这还需要一段时间(来源:one, two, three)现在,我正在构建一个WP模板,其中我必须使用最新的Bootstrap CSS框架。问题是引导程序使用最新的jQuery 3.5.1 !那么,最新的引导程序是否可以与默认的Wordpress jQuery一起正常工作?Note: I understand that I can register the latest jQuery and un