Hook ‘wp_enqueue_scripts’ priority has no effect
The problem is that your actions are being run in the order you perceive but the styles are just being collected by WordPress and included in a random order. The order of your add_actions will not be important. I would do this: function add_all_stylesheets() { // you omitted this from your question, see below } … Read more