One more for today:<div><br></div><div>Most Themes drop the wp_enqueue_script( &#39;comment-reply&#39; ) code directly into the document head, but it *can* be hooked into wp_head, if given the correct priority.</div><div><br>
</div><div>I *think* wp_enqueue_styles fires at priority 1 in wp_head. Regardless, passing priority 0 to the enqueue function *does* work. e.g.:</div><div><br></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">
<div><div>function oenology_enqueue_comment_reply() {</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>if ( is_singular() &amp;&amp; comments_open() &amp;&amp; get_option( &#39;thread_comments&#39; ) ) { </div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>wp_enqueue_script( &#39;comment-reply&#39; ); </div><div><span class="Apple-tab-span" style="white-space:pre">        </span>}</div><div>}</div><div>add_action( &#39;wp_head&#39;, &#39;oenology_enqueue_comment_reply&#39;, 0 );</div>
</div></blockquote><div><br></div><div>Notice that I&#39;ve also added a comments_open() to the conditional.</div><div><br></div><div>Any comments/ideas/suggestions?</div><div><br></div><div>Chip</div>