0
Wordpressテーマで動作するようにjQuery UIのスライダーを作成する際に問題が発生しています。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');
時間を保存していただきありがとうございます。 –