我正在尝试在我的主题上加载jquery的发布版本,它似乎不喜欢我在我的functions.php中所做的事情。我不确定为什么它不会加载jquery也不会加载我的bootstrap.css文件请看下面的代码并告诉我你是否可以指导我一个解决方案:
function dbh_scripts() {
wp_enqueue_style( 'style-name', get_stylesheet_uri() ); // it loads this script.
wp_enqueue_script( 'jquery', false, array(), null, true); // I want it to load in the footer
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), null, true ); // not loading either.
}
add_action( 'wp_enqueue_scripts', 'dbh_scripts' );
请注意,我想在页脚中加载这些内容,而不是现在不依赖于cdn。谢谢你的帮助!
答案 0 :(得分:0)
wp_enqueue_script( 'jquery', false, array(), null, true);
请尝试删除此行并尝试使用。