style.css
和自定义css文件在WordPress版本4.9.4中都不起作用。
在结束wp_head()
标记之前还包括<head>
在wp_footer()
代码结束之前包含<body>
。
functions.php
档案:
function theme_styles(){
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_style( 'boostrap', get_template_directory_uri() . '/css/bootstrap.min.css');
}
add_action('wp_enqueue_scripts', 'theme_styles');
答案 0 :(得分:0)
将function.php重命名为functions.php
如果文件没有正确命名,WordPress将无法调用该文件。