jQuery UI 滑块在 WordPress 主题中不起作用
我在使 jQuery UI 的滑块适用于我的 Wordpress 主题时遇到问题。
我已经将脚本加入队列仍然没有成功。我做错了什么?
wp_deregister_script('jquery');
wp_register_script('jquery', get_template_directory_uri().'/library/js/jquery-1.6.4.min.js', false);
wp_register_script('jquery_ui', get_template_directory_uri().'/library/js/jquery-ui.js', array('jquery-ui-core'),'1.7.3');
wp_enqueue_style('jquery-ui', get_template_directory_uri().'/library/css/jquery-ui.css');
wp_enqueue_script('jquery');
wp_enqueue_script('jquery_ui');
I'm having issues making jQuery UI's slider to work on my Wordpress theme.
I have enqueued the script still no success. What am I doing wrong?
wp_deregister_script('jquery');
wp_register_script('jquery', get_template_directory_uri().'/library/js/jquery-1.6.4.min.js', false);
wp_register_script('jquery_ui', get_template_directory_uri().'/library/js/jquery-ui.js', array('jquery-ui-core'),'1.7.3');
wp_enqueue_style('jquery-ui', get_template_directory_uri().'/library/css/jquery-ui.css');
wp_enqueue_script('jquery');
wp_enqueue_script('jquery_ui');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 WordPress 内置脚本?如果您只想使用 jquery ui slider,则按以下方式排队:
Why not use the WordPress inbuilt scripts? if you only want to use jquery ui slider then enqueue in the following way: