• Resolved kitten304

    (@kitten304)


    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!

Viewing 4 replies - 1 through 4 (of 4 total)
  • What theme are you using? I cant see any call to the template tags for comments in your source.
    https://codex.www.ads-software.com/Template_Tags

    Thread Starter kitten304

    (@kitten304)

    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.

    Thread Starter kitten304

    (@kitten304)

    Thanks for your help. I have it working now.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Comments Still Not Working’ is closed to new replies.