我必须在函数文件中注册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
请告知。