Jquery UI implementation

时间:2011-12-02 作者:Victor Johansson

我必须在函数文件中注册jQuery UI。我不希望它直接出现在标题中。php

function my_jquery_ui() {
// register your script location, dependencies and version
wp_register_script(\'jquery-ui-1.8.16\', get_template_directory_uri().\'/js/jquery-ui-1.8.16.js\', array(\'jquery\'), \'1.8.16\');
// enqueue the script
wp_enqueue_script(\'jquery-ui-1.8.16\');
}
add_action(\'wp_enqueue_scripts\', \'my_jquery_ui\');
据firebug称,jQuery插件已经注册

我正在尝试创建选项卡,您可以在这里看到:

http://www.vmjconsulting.com/wordpress01/testing/#tabs-1

请告知。

1 个回复
SO网友:James

您是否也尝试过将jquery ui选项卡排队?

wp_enqueue_script( \'jquery-ui-tabs\' );

然后在主javascript文件中设置元素?

jQuery(\'#tabs\').tabs();

结束