我用的是大脚怪主题,我用这个做了一个儿童主题。我已经设置好了一切,我的子主题在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
*/
我已经尝试了一系列在线找到的解决方案,但似乎都没有奏效。知道我做错了什么吗?
任何帮助都将不胜感激!