我是Wordpress的新手,通常使用的是Mac。我在Windows 7的本地WAMP服务器上使用Wordpress 3.8.1和Bootstrap 3.1.1。我还注意到Windows资源管理器中的文件是绿色的。 (如果有任何帮助)
我遇到的问题是bootstrap.css的@import根本没有加载。我试过从root获取完整路径。我知道我已经正确链接了style.css文件,因为我看到了我所显示的样式,但在Developer Tools中根本没有显示任何Bootstrap样式。我跟着几个将Bootstrap导入到Wordpress的指南,我跟着他们说的一切都无济于事。我真的不确定这里发生了什么。
这是我的style.css文件的顶部:
/*
Theme Name: SSMMA Bootstrap Theme
Theme URI: http://siamstarmma.com
Description: Siam Star MMA's responsive Bootstrap 3 theme
Version: 1
Auther: CaptMinty
Author URI: http://captminty.com;
*/
@import url("css/bootstrap.css");
如果我无法使其正常工作,是否有其他方法可以在wordpress中链接CSS文件?
答案 0 :(得分:1)
您可以使用此功能添加到范围内;
function add_require_scripts_files() {
wp_enqueue_style('boot', get_template_directory_uri().'/css/bootstrap.css', array('style'), null, "all");
}
add_action( 'wp_enqueue_scripts', 'add_require_scripts_files' );