Custom setup of wordpress comments that are displayed

Try adding the following code to your comments.php template file (where you want the “next page”https://wordpress.stackexchange.com/”prev page” links displayed): <?php paginate_comments_links(); ?> This should enable multiple pages for your comments. Also, check out this Codex page (paginate_comments_links) for more information. Hope this helps 😉

comments_number not displaying

You need to change the code you’re using from <div class=”post-meta”> <p><?php the_date(); ?> | <?php the_tags(‘tags:’, ‘, ‘, ‘<br />’); ?> | <?php comments_number( $zero, $one, $more ); ?> comments</p> <?php comments_template(); ?> </div><!– end post-meta –> to <div class=”post-meta”> <p><?php the_date(); ?> | <?php the_tags(‘tags:’, ‘, ‘, ‘<br />’); ?> | <?php comments_number( … Read more

How to call wp_list_comments() outside of the comments template?

You need to include comments functionality via comments_template(), because this function doesn’t merely include the comments.php, file, but also handles all of the querying and functions required for displaying comments. While the Codex doesn’t really get into details, you can see, by looking at source, what’s going on: <?php /** * Loads the comment template … Read more