<font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;">Given the ongoing confusion, let me try to clear some things up.<br></span></font><div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;"><br>

</span></font></div><div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; ">First, Otto is correct in everything I&#39;ve read. wp_enqueue_scripts is the right hook on which one calls wp_enqueue_script() and wp_enqueue_style(). The wp_print_styles hook is too late.</span></div>

<div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; "><br></span></div><div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; ">The init hook is also poor form. Don&#39;t use it. This is wrong. This will then enqueue the style/script for the admin. Do not do an is_admin() check. That will keep it enqueued for wp-login. Do not do a $pagenow = &#39;wp-login.php&#39; check. That is just silly. Use the right hook.</span></div>

<div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; "><br></span></div><div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; ">template_redirect is not technically too early -- it&#39;s, I would say, the earliest possible hook to ever use here -- but again, if you *are* going to attach it to a hook, use the right hook (wp_enqueue_scripts).</span></div>

<div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; "><br></span></div><div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; ">If you are not going to attach it to a hook, then your only choice is in the body of header.php, as long as it is before wp_head(). Anywhere else I would consider wrong.</span></div>

<div><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; "><br></span></div><div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;">As Mike Little said, enqueueing too early *can* break things. Specifically localization. Ideally we should start to fire _doing_it_wrong() notices whenever wp_enqueue_scripts is enqueued before template_redirect (give or take).</span></font></div>

<div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;"><br></span></font></div><div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;">Hope that helps. Anything else to clear up?</span></font></div>

<div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;"><br></span></font></div><div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;">Nacin</span></font></div>