wp enqueue style and style sheet depth
You can add a priority number to the wp_enqueue_scripts action. So you could could give the action hooked to the enqueue of yourstyle sheet a priority of 999. Like so: function high_priority_style() { Wp_enqueue_style(‘important’, get_template_directory_uri() . ‘/css/important.css’); } add_action(‘wp_enqueue_scripts’, ‘high_priority_style’, ‘999’); A simpler way to do is enqueue all of your stylesheets, including style.css in … Read more