2012-02-24 83 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