One more for today:<div><br></div><div>Most Themes drop the wp_enqueue_script( 'comment-reply' ) 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() && comments_open() && get_option( 'thread_comments' ) ) { </div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>wp_enqueue_script( 'comment-reply' ); </div><div><span class="Apple-tab-span" style="white-space:pre">        </span>}</div><div>}</div><div>add_action( 'wp_head', 'oenology_enqueue_comment_reply', 0 );</div>
</div></blockquote><div><br></div><div>Notice that I'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>