我有一个子主题,它根本没有显示我的CSS更改。当我检查元素时,更改不会显示在资源管理器窗口中。我看了看脑袋,孩子的主题风格不是排队。
子函数。php:
<?php
add_action( \'wp_enqueue_scripts\', \'enqueue_parent_theme_style\');
function enqueue_parent_theme_style() {
wp_enqueue_style( \'parent-style\', get_template_directory_uri().\'/style.css\' );
}
子样式。css:
/*
Theme Name: Jevelin Child
Description: Child theme for Jevelin theme
Author: Shufflehound
Author URI: http://shufflehound.com
Template: jevelin
Text Domain: jevelin-child
*/
/* Add your custom CSS below */
我不知道罪魁祸首是什么。
最合适的回答,由SO网友:BlueSuiter 整理而成
请用这个代替你正在使用的。这肯定会奏效的。
<?php
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 ),
wp_get_theme()->get(\'Version\')
);
}
add_action( \'wp_enqueue_scripts\', \'my_theme_enqueue_styles\' );
?>
For more details on configuring Child themes in WordPress please refer to this link.