如果你的孩子的主题风格。css包含实际的css代码(通常是这样),您还需要将其排队。将“父样式”设置为依赖项将确保子主题样式表在其之后加载。包含子主题版本号可以确保您也可以为子主题进行bust缓存。完整(推荐)的示例如下:
add_action( \'wp_enqueue_scripts\', \'my_theme_enqueue_styles\' );
function my_theme_enqueue_styles()
{
$parent_style = \'parent-style\'; // This is \'twentyfifteen-style\' for the Twenty Fifteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'child-style\', get_stylesheet_directory_uri() . \'/style.css\', array( $parent_style ));
}
其中,父样式与父主题注册其样式表时在父主题中使用的$句柄相同。
Refer