admin管理员组文章数量:1328337
I'm using the BigFoot theme and I've made a child theme from this. I've set everything up, my child theme is activated in the wp-admin and everything looks good but for some reason my page isn't loading any CSS.
I'm writing SCSS and converting it into CSS with a build task, when I run the build task it succesfully compiles the SCSS to CSS.
This is my functions.php page
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'));
}
This is the style.css page
/*
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: .0.html
Tags: light, two columns
Text Domain: bigfootchild
*/
I've already tried a bunch of solutions I found online but none of them seem to be working. Any idea on what I'm doing wrong?
Any help would be highly appreciated!
I'm using the BigFoot theme and I've made a child theme from this. I've set everything up, my child theme is activated in the wp-admin and everything looks good but for some reason my page isn't loading any CSS.
I'm writing SCSS and converting it into CSS with a build task, when I run the build task it succesfully compiles the SCSS to CSS.
This is my functions.php page
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'));
}
This is the style.css page
/*
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/licenses/gpl-3.0.html
Tags: light, two columns
Text Domain: bigfootchild
*/
I've already tried a bunch of solutions I found online but none of them seem to be working. Any idea on what I'm doing wrong?
Any help would be highly appreciated!
Share Improve this question asked Jun 17, 2020 at 14:41 MaximMaxim 1 3 |1 Answer
Reset to default 0after you registered and activated child theme you should add wp_enqueue_style( 'child-style', get_stylesheet_directory_uri( ) . '/css/screen.css', array('parent-style', 'bigfoot-style', 'bigfoot-css'), wp_get_theme()->get('Version'));
in your childs theme functions , i assume by adding get_stylesheet_directory_uri( )
to your main theme ytou get wrong path ,
and there is a space in get_stylesheet_directory_uri( ) <===
please remove space from brackets.```
本文标签: child themeWordPress childtheme not loading any CSSSCSS
版权声明:本文标题:child theme - WordPress childtheme not loading any CSSSCSS 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742261346a2442573.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
get_stylesheet_directory_uri() . 'css/screen.css'
– Tony Djukic Commented Jun 17, 2020 at 17:26