2012-02-24 81 views
0

我有问题使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'); 

回答

5

为什么不使用WordPress内置脚本?如果你只想使用jQuery UI的滑块,然后排队以下列方式:

wp_enqueue_script('jquery'); 
wp_enqueue_script('jquery-ui-core'); 
wp_enqueue_script('jquery-ui-slider'); 
+0

谢谢你救了我的时间。 – 2016-10-11 18:53:34