I still can get comments to work on my site. When you click on comments the post comes up but nothing else. Can any one help me fix this problem?
Thanks!
I still can get comments to work on my site. When you click on comments the post comes up but nothing else. Can any one help me fix this problem?
Thanks!
What theme are you using? I cant see any call to the template tags for comments in your source.
http://codex.wordpress.org/Template_Tags
I am using a theme I made and can't seem to get the comments to work.
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2>" rel="bookmark"
title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></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">Posted in <?php the_category(', ') ?>
| <?php edit_post_link('Edit','','|'); ?> <?php comments_popup_link('No
Comments »', '1 Comment »', '% Comments »'); ?>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »')
?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
I haven't used comments_popup so I can't help with that, but what file is this? I can't see any reference to output comments.
Thanks for your help. I have it working now.
This topic has been closed to new replies.