我创建了如下儿童主题https://codex.wordpress.org/Child_Themes
这是我的风格。css
/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*************** ADD CUSTOM CSS HERE. ***************/
@media only screen and (max-width: 48em) { }
/*************** ADD MOBILE ONLY CSS HERE ***************/
.absolute-footer.dark {
color: rgb(74, 74, 74) !important;
}
.absolute-footer.dark {
color: rgb(74, 74, 74);
}
h3
{
background-color: #c75050 !important;
}
但儿童主题风格的变化。css未按预期工作。我在子主题的函数中使用了以下代码。php
add_action( \'wp_enqueue_scripts\', \'load_my_child_styles\', 20 );
function load_my_child_styles() {
wp_enqueue_style( \'child-style\', get_stylesheet_directory_uri().\'/style.css\', array(\'twentyfourteen-style\'), \'1.0.0\' );
}
但它也不起作用。请让我知道是如何做的风格。css正常工作