How to avoid loading style.css twice in child-theme?
I have twentyseventeen child-theme, and I found this code: add_action( ‘wp_enqueue_scripts’, ‘child_enqueue_styles’,99); function child_enqueue_styles() { $parent_style=”parent-style”; wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_style( … Read more