Why is style.css not being enqueued?

Theme stylesheets aren’t usually enqueued, they’re normally loaded using..

<link rel="stylesheet" type="text/css" media="all" href="https://wordpress.stackexchange.com/questions/14655/<?php bloginfo("stylesheet_url' ); ?>" />

So naturally you don’t see them(it) in the styles array..

You can of course(if you prefer) use an enqueue instead.

Leave a Comment