how to paginate the comments
-
Hello i am having problem in paginating the comments.what should i do please help me in my code:
<?php if(!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) : ?> <?php die('You can not access this page directly!'); ?> <?php endif; ?> <?php if(!empty($post->post_password)) : ?> <?php if($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?> <p>This post is password protected. Enter the password to view comments.</p> <?php endif; ?> <?php endif; ?> <?php if($comments) : ?> <ol class="commentlist"> <?php comments_popup_link('No comments', 'One comment', '% comments', 'comments-link', 'Comments are closed'); ?> <?php comments_rss_link('RSS Feed'); ?> <?php $i = 0; ?> <?php foreach($comments as $comment) : ?> <?php if ($comment->comment_approved == '0') : ?> <p>Your comment is awaiting approval</p> <?php endif; ?> <?php $i++; ?> <li id="comment-<?php comment_ID() ?>" <?php if($i&1) { echo 'class="odd"'; } else { echo 'class="even"'; } ?>> <?php echo get_avatar( $comment, 50 ); ?> <?php comment_text(); ?> <p class="meta"><?php comment_type(); ?> by <?php comment_author_link(); ?> on <?php comment_date(); ?> at <?php comment_time(); ?></p> <?php edit_comment_link($link_text, $before_link, $after_link); ?> </li> <br> <?php endforeach; ?> </ol> <?php else : ?> <p>No comments yet</p> <?php endif; ?> <?php if(comments_open()) : ?> <?php if(get_option('comment_registration') && !$user_ID) : ?> <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p><?php else : ?> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> <?php if($user_ID) : ?> <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Log out »</a></p> <?php else : ?> <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /> <label for="author"><small>Name <?php if($req) echo "(required)"; ?></small></label></p> <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" /> <label for="email"><small>Mail (will not be published) <?php if($req) echo "(required)"; ?></small></label></p> <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> <label for="url"><small>Website</small></label></p> <?php endif; ?> Allowed tags: <?php echo allowed_tags(); ?> <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p> <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /></p> <?php do_action('comment_form', $post->ID); ?> </form> <?php endif; ?> <?php else : ?> <p>The comments are closed.</p> <?php endif; ?> <p><?php previous_posts_link('Previous Entries' );?> <?php next_posts_link('Older entries' );?></p>
above is my comments.php
and what should i do in my single.php?<?php get_header(); ?> <div class="container "> <div class="span12"> <div class="row"> <div class="span8 single-post"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!-- post --> <h2><?php the_title(); ?></h2> <div class="single-entry"> <em>Article Posted on:<?php the_time('l,F,jS,Y'); ?>at <?php the_time( ); ?></em> <?php the_content( ); ?> <?php the_tags( ); ?> <div class="promote"> <h3>Enjoy the Article</h3> <p>If you have enjoy this article please subscribe to our <a href="<?php bloginfo('rss2_url'); ?>">RSS Feed</a></p> </div> <br> <?php comments_template( ); ?> <div class="postlink"> <p><?php previous_post_link('%link «' );?> <?php next_post_link('» %link' );?></p> </div> </div> <?php endwhile; ?> <!-- post navigation --> <?php else: ?> <!-- no posts found --> <h2>Sorry no post found</h2> <?php endif; ?> </div> <div class="span4 recentblog"> <h3>My Recent Blogs</h3> <?php wp_get_archives("type=postbypost" );?> </div> </div> </div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
- The topic ‘how to paginate the comments’ is closed to new replies.