Wordpress 子主题样式.css不起作用
我创建了一个与父主题格式相同的文件结构。我的父主题称为Alpine,在Alpine中有一个函数.php和style.css文件。似乎没有任何附加样式.css文件。
我创建了一个名为Alpine-child的目录,并在其中创建了一个函数.php和样式.css文件。
我无法弄清楚为什么我对子样式所做的任何更改.css没有实现,但是当我在父样式中进行相同的更改时,它们就会实现.css
这是我的孩子风格.css:
/*
Theme Name: Alpine Child
Theme URI: http://www.creative-ispiration.com/wp/alpine/
Description: My first child theme, based on Alpine
Author: MilkshakeThemes
Author URI: http://themeforest.net/user/milkshakethemes
Template: Alpine
Version: 1.0.0
Tags: one-column, two-columns, right-sidebar, fluid-layout, custom-menu, editor-style, featured-images, post-formats, rtl$
Text Domain: alpine-child
*/
这是我的子函数.php文件:
<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>