• I’m having some trouble with a VERY basic question (in my opinion).

    How do you link your blog entry’s comment link to the actual comment page where visitor’s can enter in comments?

    <b>Posted in <?php the_category(‘, ‘) ?> <?php edit_post_link(‘| Edit’, ”, ”); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></b>

    That is the only thing I can think of in my coding that may lead me there. I’ve made a comments.php and comments-popup.php page too.

    Thanks!

Viewing 1 replies (of 1 total)
  • You are halfway there.
    The code above will display the link (e.g. 2 comments).
    Now, to have the comments listed and the comment form displayed – you need to call/include the comments.php file into the template file where you want them to appear: most commonly the single.php or index.php file.

    <?php comments_template(); // Get wp-comments.php template ?>

Viewing 1 replies (of 1 total)

The topic ‘Blog Entry Comments Question’ is closed to new replies.