Wordpress评论循环

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress评论循环相关的知识,希望对你有一定的参考价值。

Just the basic Wordpress comments loop.
  1. <!-- recent comment of each post -->
  2.  
  3. <div class="recent-comment">
  4. <?php
  5. $comment_array = array_reverse(get_approved_comments($wp_query->post->ID));
  6. $count = 1;
  7. ?>
  8.  
  9. <?php if ($comment_array) { ?>
  10. <span class="comment"> <?php comments_number('No comment','1 comment','% comments'); ?></span> - Latest by:
  11. <ul class="commentlist">
  12. <?php foreach($comment_array as $comment){ ?>
  13. <?php if ($count++ <= 2) { ?>
  14. <li><?php comment_author_link(); ?> <br /> <?php comment_excerpt(); ?> </li>
  15. <?php } ?>
  16. <?php } ?>
  17. </ul>
  18. <?php } else { ?> <!-- if there was no comment in that post,yet -->
  19. <span class="comment">No comment so far</span>
  20. <?php } ?>
  21. </div>
  22.  
  23. <!-- end recent comment-->

以上是关于Wordpress评论循环的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress评论循环

在 wordpress 主页上显示评论

WordPress - 代码片段插件

wordpress插件的常用插件

markdown 在WordPress中使用jQuery代码片段

Wordpress - 将代码片段包含到布局的选定部分的插件