引导程序未调用到我的WordPress主题中

时间:2019-04-13 作者:theasianbean

当我查看有关引导程序的页面资源时,我总是遇到一个错误。min.css文件,它给了我一个“加载资源失败:服务器响应状态为404(未找到)”=>http://theasianbean.local/wp-content/themes/test-theme/bootstrap/css/bootstrap.min.css.map

但是,引导确实会显示在浏览器中,所以应该可以,对吗?我对这个很陌生,我不明白为什么会出现这个错误,但我的主题显示引导程序很好。

我有以下代码:

function theme_add_bootstrap() {
wp_enqueue_style( \'bootstrap-css\', get_template_directory_uri() . \'/bootstrap/css/bootstrap.min.css\' );
wp_enqueue_style( \'style-css\', get_template_directory_uri() . \'/style.css\' );
wp_enqueue_script( \'bootstrap-js\', get_template_directory_uri() . \'bootstrap/js/bootstrap.min.js\', array(), \'3.0.0\', true );
}

add_action( \'wp_enqueue_scripts\', \'theme_add_bootstrap\' );
在我的测试主题文件夹中,我有一个名为“bootstrap”的文件夹,其中有我的引导CSS和JS文件。

1 个回复
SO网友:Tanmay Patel

Put this code in functions.php file and check it.

function theme_add_bootstrap() {
wp_enqueue_style( \'bootstrap-css\', get_template_directory_uri() . \'/bootstrap/css/bootstrap.min.css\' );
wp_enqueue_style( \'style-css\', get_template_directory_uri() . \'/style.css\' );
wp_enqueue_script( \'bootstrap-js\', get_template_directory_uri() . \'/bootstrap/js/bootstrap.min.js\', array( \'jquery\' ), \'3.0.0\', true );
}
add_action( \'wp_enqueue_scripts\', \'theme_add_bootstrap\' );

相关推荐