Serious issues here, the file is not being enqueued, I’ve done a clean install and still no joy. I’ve been in WP dev for 7 yrs now and this is a first without any solution and taken a day out of my life. Disabled all plugins, changed the enqueue code but nothing makes this CSS file load on the front-end, nothing! New child theme folder generated / new demo install / required core and plugins loaded… WTF?!!!
// enqueue styles for child theme
function example_enqueue_styles() {
// enqueue parent styles
wp_enqueue_style(‘parent-theme’, get_template_directory_uri() .’/style.css’);
}
add_action(‘wp_enqueue_scripts’, ‘example_enqueue_styles’);