Please Help! Comments/Comment form not showing
-
On my main page http://www.psyranx.com
When I click on comments nothing is coming up.
My index.php page is as follows:
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_ID(); ?>
<h1><?php the_title(); ?></h1>
<small>Posted on <?php the_time('F jS') ?> <!-- by <?php the_author() ?> --> in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?></small>
<?php the_content('Read the rest of this entry �'); ?>
<div align="right"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></div>
<?php endwhile; ?>
<div class="alignleft"><?php next_posts_link('� Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries �') ?></div>
<?php else : ?>
<h1 class="center">Not Found</h1>
<p class="center">Sorry, but you are looking for something that isn't here.
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Does anybody know how to resolve this?
Thank you very much.
MIke
The topic ‘Please Help! Comments/Comment form not showing’ is closed to new replies.