function load_js()
{
wp_register_script(\'bootstrap\', get_template_directory_uri() . \'/js/bootstrap.min.js\', array(\'jquery\'), false, true );
wp_enqueue_script(\'bootstrap\');
}
add_action(\'wp_enqueue_scripts\', \'load_js\');
与一起使用
array(\'jquery\') 而不是
\'jquery\'参考文献here.上面写着:使用数组。