Howdy Folks,
I'm seeing an issue with the Comments from my WordPress blog, specifically ... the direct link to a comment is in the format of (for example):
http://www.mysite.com/post-permalink/#comment-1908
But following this link just leads to:
http://www.mysite.com/post-permalink/
... and not to the comment itself (that is, the correct URL is in the browser address field, containing the full link to the comment, but only the main page is displayed, it doesn't 'skip down' to the appropriate comment).
The source of the rendered page shows the comment rendered as:
<div id="commentbox">
<div class="commentid">
<a href="#comment-1908">1908</a> </div>
<p class="commentby">Comment by JOHN
<p class="commentinfo">March 20, 2007 @ 10:37 pm
COMMENT TEXT
</div>
Shouldn't the <a HREF="#comment-1908"> tag actually be <a NAME="#comment-1908">?
Is that why this is not working, and if so, how could I go about resolving this?
Thanks!