WordPress 评论分页

发布于 2024-10-09 06:52:06 字数 4940 浏览 0 评论 0原文

这是一篇有 12 条评论的帖子:

http://test1.zomghentai.com/kateikyoushi-no-onee-san-2-h-no-hensachi-agechaimasu-episode-1

在我的 wordpress 讨论设置中,我将其设置为 “将评论分成几页,每页有 5 条评论”

如您所见,在评论底部我有指向第 1、2 和 3 页的链接。

问题是什么?

1) 第 1 页(默认页面)一次显示所有 12 条评论,而不是仅显示 5 条

2) 第 2 页和第 3 页均与第 1 页相同


我的 comments.php 文件如下:

<div id="comments">

<?php // Do not delete these lines
 if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  die ('Please do not load this page directly. Thanks!');

        if (!empty($post->post_password)) { // if there's a password
            if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
    ?>

    <h3>This post is password protected. Enter the password to view comments.</h3>

    <?php
    return;
            }
        }

  /* This variable is for alternating comment background */
  $oddcomment = 'alt';
?>

<?php if ($comments) : ?>
 <span style="font-size: 13px;"><strong>Comments</strong></span>

 <ul>

 <?php foreach ($comments as $comment) : ?>

  <li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">


   <div class="cauthor"><strong><?php comment_author_link() ?></strong> says on <?php comment_date('M jS, Y') ?> at <?php comment_time() ?><?php if ($comment->comment_approved == '0') : ?> (Your comment is awaiting moderation)<?php endif; ?></div>

   <div class="cbox">
   <?php comment_text() ?>
   </div>

   <div style="clear: both;"></div>

  </li>

 <?php /* Changes every other comment to a different class */
  if ('alt' == $oddcomment) $oddcomment = '';
  else $oddcomment = 'alt';
 ?>

 <?php endforeach; /* end for each comment */ ?>

 </ul>

<?php paginate_comments_links() ?>

 <?php else : // this is displayed if there are no comments so far ?>

  <?php if ('open' == $post-> comment_status) : ?>
  <!-- If comments are open, but there are no comments. -->

 <?php else : // comments are closed ?>
  <!-- If comments are closed. -->

  <p>Comments are closed.</p>

 <?php endif; ?>
<?php endif; ?>


<?php if ('open' == $post-> comment_status) : ?>


    <div class="postinput">

     <span style="font-size: 13px;padding: 10px 0 0 0;"><strong>Leave a Comment</strong></span>



     <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
     <p>You must be <a href="http://www.hentaidreaming.com/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>



     <?php else : ?>

     <form action="http://www.hentaidreaming.com/wp-comments-post.php" method="post" id="commentform">



     <?php if ( $user_ID ) : ?>

     <p>Logged in as <a href="http://www.hentaidreaming.com/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="http://www.hentaidreaming.com/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout &raquo;</a></p>

     <?php else : ?>

<p>
 <input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="20" tabindex="1" />
 <label for="author"><small>Name <?php if ($req) _e('<strong>(required)</strong>'); ?></small></label>
</p>

<p>
 <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="20" tabindex="2" />
 <label for="email"><small>Mail <?php if ($req) _e('<strong>(required, will not be published)</strong>'); ?></small></label>
</p>

<?php endif; ?>

<p>
 <textarea name="comment" id="comment" tabindex="4" rows="10" cols="50" ></textarea>
</p>

<p>
 <input name="submit" type="image" id="submit" class="input-submit" tabindex="5" value="Submit Comment" title="Please review your comment before submitting" alt="Submit Comment" src="http://www.hentaidreaming.com/wp-content/themes/hdreamwp/images/submit.gif" />
 <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>

</form>




<?php endif; // If registration required and not logged in ?>

<?php endif; // if you delete this the sky will fall on your head ?>




    </div> <!-- End "postinput" -->



</div> <!-- End "comments" -->

Here is a post with 12 comments :

http://test1.zomghentai.com/kateikyoushi-no-onee-san-2-h-no-hensachi-agechaimasu-episode-1

In my wordpress Discussion Settings, I have set it to
"Break Comments into Pages with 5 comments each"

As you can see, at the bottom of comments I have links to Page 1, 2, and 3.

The problem?

1) Page 1 (default page) is showing all 12 comments at once, instead of showing just 5

and

2) Page 2, and 3, are all the same as Page 1


My comments.php file is as followed :

<div id="comments">

<?php // Do not delete these lines
 if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  die ('Please do not load this page directly. Thanks!');

        if (!empty($post->post_password)) { // if there's a password
            if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
    ?>

    <h3>This post is password protected. Enter the password to view comments.</h3>

    <?php
    return;
            }
        }

  /* This variable is for alternating comment background */
  $oddcomment = 'alt';
?>

<?php if ($comments) : ?>
 <span style="font-size: 13px;"><strong>Comments</strong></span>

 <ul>

 <?php foreach ($comments as $comment) : ?>

  <li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">


   <div class="cauthor"><strong><?php comment_author_link() ?></strong> says on <?php comment_date('M jS, Y') ?> at <?php comment_time() ?><?php if ($comment->comment_approved == '0') : ?> (Your comment is awaiting moderation)<?php endif; ?></div>

   <div class="cbox">
   <?php comment_text() ?>
   </div>

   <div style="clear: both;"></div>

  </li>

 <?php /* Changes every other comment to a different class */
  if ('alt' == $oddcomment) $oddcomment = '';
  else $oddcomment = 'alt';
 ?>

 <?php endforeach; /* end for each comment */ ?>

 </ul>

<?php paginate_comments_links() ?>

 <?php else : // this is displayed if there are no comments so far ?>

  <?php if ('open' == $post-> comment_status) : ?>
  <!-- If comments are open, but there are no comments. -->

 <?php else : // comments are closed ?>
  <!-- If comments are closed. -->

  <p>Comments are closed.</p>

 <?php endif; ?>
<?php endif; ?>


<?php if ('open' == $post-> comment_status) : ?>


    <div class="postinput">

     <span style="font-size: 13px;padding: 10px 0 0 0;"><strong>Leave a Comment</strong></span>



     <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
     <p>You must be <a href="http://www.hentaidreaming.com/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>



     <?php else : ?>

     <form action="http://www.hentaidreaming.com/wp-comments-post.php" method="post" id="commentform">



     <?php if ( $user_ID ) : ?>

     <p>Logged in as <a href="http://www.hentaidreaming.com/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="http://www.hentaidreaming.com/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout »</a></p>

     <?php else : ?>

<p>
 <input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="20" tabindex="1" />
 <label for="author"><small>Name <?php if ($req) _e('<strong>(required)</strong>'); ?></small></label>
</p>

<p>
 <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="20" tabindex="2" />
 <label for="email"><small>Mail <?php if ($req) _e('<strong>(required, will not be published)</strong>'); ?></small></label>
</p>

<?php endif; ?>

<p>
 <textarea name="comment" id="comment" tabindex="4" rows="10" cols="50" ></textarea>
</p>

<p>
 <input name="submit" type="image" id="submit" class="input-submit" tabindex="5" value="Submit Comment" title="Please review your comment before submitting" alt="Submit Comment" src="http://www.hentaidreaming.com/wp-content/themes/hdreamwp/images/submit.gif" />
 <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>

</form>




<?php endif; // If registration required and not logged in ?>

<?php endif; // if you delete this the sky will fall on your head ?>




    </div> <!-- End "postinput" -->



</div> <!-- End "comments" -->

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夕嗳→ 2024-10-16 06:52:07
paginate_comments_links()

这是你应该发布的内容,你发布的内容没有说明任何问题。

paginate_comments_links()

This is what you should have posted, what you posted tells nothing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文