Comments for a category page
-
I am trying to add the comment_template for a category page. It is essentially another index.php. I was hoping to be be able to pull the comment template for that page. I know it has to be in the loop so I assembled some code to mimic what is happening on a single.php page.
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php comments_template(); // Get wp-comments.php template ?> <?php endwhile; ?> <?php endif; ?>
I was wondering if there is a way to allow comments on the category level.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Comments for a category page’ is closed to new replies.