我目前正在_S Underscores Wordpress 主题之上构建一个自定义主题。我立即做的一件事是删除style.css
文件中的所有内容,因为我想创建自己的样式(主要使用 Bootstrap)。
但是,我似乎无法获得某些属性style.css
来更改 html。例如,我正在尝试将以下<h1>
标签设置为红色。但它不会改变。
<h1 id="testOfContent">Test</h1>
CSS(在style.css
下划线提供的文件中):
#testOfContent {
color: red;
}
但是,字体仍然是黑色的。你如何操纵一个 wordpress 主题(尤其是 _S 下划线,它是可定制的)来使用你自己的 css?关于为什么它不会注册我自己的 CSS 的任何想法?
这是我的functions.php
文件以及我如何加载脚本:
function tlas_css() {
// Enqueue bootstrap css
wp_register_style('bootstrap-css', get_template_directory_uri() . '/bootstrap-3.3.4/css/bootstrap.min.css');
wp_enqueue_style('bootstrap-css');
// Enqueue custom stylesheet
wp_enqueue_style( 'tlas-custom-style', get_template_directory_uri() . '/css/tlas.css' );
wp_enqueue_style( 'tlas-style', get_template_directory_uri() . '/style.css');
}
add_action( 'wp_enqueue_scripts', 'tlas_css' );