I'm not sure if this is a framework issue or a Wordpress issue. But the Leave a comment links don't go to the comments on the single post page, it just goes to the top of the post.
The code in index.php is:
<a href=<?php comments_link(); ?>>
What shows up in the page that's delivered is:
<a href=http://mysite.com/.../post_title#comments>
There was no anchor in the post that had
. name=comments
I added one in comments.php just after:
<?php if ( comments_open() ) : // show comment form ?>
Now it works. But looking at the Wordpress documentation about threaded comments I'm not sure if doing this is going to cause some other problem.
resolved