I met a fellow last night that said a theme reviewer told him style.css had to be linked directly in header.php, and couldn&#39;t be enqueued through wp_enqueue_scripts, like this:<div><br></div><div><div>add_action(&#39;wp_enqueue_scripts&#39;, &#39;themeslug_enqueue_scripts_styles&#39;);</div>

<div><br></div><div>function themeslug_enqueue_scripts_styles() {</div><div>   wp_enqueue_style( &#39;themeslug-styles&#39;, get_stylesheet_uri() );</div><div>}</div></div><div><br></div><div><br></div><div>Is this the case?..</div>