WordPress子主题不加载任何CSS/SCSS

时间:2020-06-17 作者:Maxim

我用的是大脚怪主题,我用这个做了一个儿童主题。我已经设置好了一切,我的子主题在wp管理中被激活,一切看起来都很好,但由于某种原因,我的页面没有加载任何CSS。

我正在编写SCS并使用构建任务将其转换为CSS,当我运行构建任务时,它会成功地将SCS编译为CSS。

这是我的职能。php页面

add_action( \'wp_enqueue_scripts\', \'my_theme_enqueue_styles\' );
function my_theme_enqueue_styles() {
//deze code laadt de CSS van de PARENT get_template_directory_uri()
wp_enqueue_style( \'parent-style\', get_template_directory_uri() . \'/style.css\' );
//laadt ook de  eigen CSS

wp_enqueue_style( \'child-style\', get_stylesheet_directory_uri(  ) . \'/css/screen.css\', array(\'parent-style\', \'bigfoot-style\', \'bigfoot-css\'), wp_get_theme()->get(\'Version\'));
}

这就是风格。css页面

/*
Theme Name:   Bigfoot Child
Theme URI:    ***************
Description:  Bigfoot Child Theme
Author:       ***************
Author URI:   ***************
Template:     bigfoot
Version:      1.0.0
License:      GNU General Public License version 3.0
License URI:  http://www.gnu.org/licenses/gpl-3.0.html
Tags:         light, two columns
Text Domain:  bigfootchild
*/
我已经尝试了一系列在线找到的解决方案,但似乎都没有奏效。知道我做错了什么吗?

任何帮助都将不胜感激!

1 个回复
SO网友:Eigirdas Skruolis

注册并激活子主题后,应添加wp_enqueue_style( \'child-style\', get_stylesheet_directory_uri( ) . \'/css/screen.css\', array(\'parent-style\', \'bigfoot-style\', \'bigfoot-css\'), wp_get_theme()->get(\'Version\'));

在你孩子的主题函数中,我假设get_stylesheet_directory_uri( ) 到你的主题你走错了路,里面有一个空间get_stylesheet_directory_uri( ) <=== 请删除括号中的空格```

相关推荐

为什么WordPress在JS上使用HTTPS,在EC2上使用CSS

我已经将Wordpress站点迁移到EC2。在wp config中进行的域更改。php&;在DB表中,还可以在Apache站点的默认配置中设置AllowOverride All。Issue is: 尽管我没有使用强制SSL,但在页面加载时,所有资产都使用https加载。由于我没有活动的SSL证书,所有这些资源都会在浏览器控制台中显示ERR\\u连接。因此,页面也无法正确呈现