wordpress comments
-
I have a question, on my site katelyntarverfans.com how do I get the add comment part at the bottom of each entry on my wordpress to show up so people can post comments? I’ve tried putting this code in my index page but it never works:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?><table width=”99%” border=”0″ cellspacing=”0″ cellpadding=”0″ style=”margin-bottom:16px;”>
<tr>
<?php the_content(‘Read the rest of this entry ?’); ?></td>
</tr>
<tr>
Posted on <span style=”color:#000000;”><?php the_time(‘d M Y’) ?></span> by <span style=”color:#000000;”><?php the_author() ?></span> || <span style=”color:#0000000;”><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></span></td>
</tr>
</table><?php endwhile; ?>
<p align=”center”><?php next_posts_link(‘? Older Entries |’) ?><?php previous_posts_link(‘| Newer Entries ?’) ?>
<?php else : ?>
<p align=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?>
Thanks for any help you can give, and if you can’t help me can you maybe tell me of someone who can, I’ve been trying to figure this out for days. Thanks!
- The topic ‘wordpress comments’ is closed to new replies.