I don&#39;t understand why using priority numbers, for their intended purpose, is &quot;annoying&quot; or &quot;weird&quot;?<div><br></div><div>I&#39;m all for recommending best practice, whatever that may be; I&#39;m just surprised that until now we&#39;ve not heard anyone suggest this method, although we&#39;ve been discussing style enqueueing for almost a year.</div>
<div><br></div><div>Chip<br><br><div class="gmail_quote">On Fri, Jun 3, 2011 at 6:17 AM, Otto <span dir="ltr">&lt;<a href="mailto:otto@ottodestruct.com">otto@ottodestruct.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On Fri, Jun 3, 2011 at 6:02 AM, Chip Bennett &lt;<a href="mailto:chip@chipbennett.net">chip@chipbennett.net</a>&gt; wrote:<br>
&gt; Wait: you want to enqueue a *style* at &#39;wp_enqueue_scripts&#39;? Or was that a<br>
&gt; typo?<br>
<br>
</div>No, not a typo.<br>
<br>
There is no wp_enqueue_styles action hook, but if there was, then it<br>
would be at the same time/place that the existing wp_enqueue_scripts<br>
action hook is.<br>
<br>
The reason to enqueue at that time is because that gives the rest of<br>
the code time to potentially dequeue the script/style before it<br>
prints. If you wait until wp_print_styles to enqueue, then the only<br>
way you can possibly dequeue is to hook to wp_print_styles again with<br>
a larger priority number, which is annoying and weird.<br>
<br>
Again, enqueue early, dequeue late.<br>
<br>
Styles and scripts destined for the front end of the site should both<br>
be hooked into the wp_enqueue_scripts action hook.<br>
<div><div></div><div class="h5"><br>
-Otto<br>
_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</div></div></blockquote></div><br></div>