Home › Forums › WoodMart support forum › Child theme Style.css not working › Reply To: Child theme Style.css not working
December 22, 2020 at 9:04 am
#252994
katyp
Participant
This is the code that’s present in my child theme’s functions.php
/**
* Enqueue script and styles for child theme
*/
function woodmart_child_enqueue_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) );
}
add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 10010 );