My comments page when clicked goes to the categories page with #respond or #comments at the end, but no comments or comment form are displayed, the comments_popup_link() is used but I don't want them to be in a popup but still no comments are displayed whatever the link is used.
When using comments_link() I just get the output of the link, so I'm not sure where I am going wrong.
If you need to view the page then http://iamsteve.me/blog/
That's my loop.
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php endwhile; ?>
This is my single.php
http://pastebin.com/dqNT1J7r
My comments.php
http://pastebin.com/QYJHn7cA
I really have no clue what's up, thanks for any help in advance.
Steve.