在评论网站上以相反的顺序显示评论列表

时间:2013-01-03 16:25:03

标签: php arrays comments sorting

在评论网站上,我想先显示最新的评论。我的代码如下:

<div class="comment_list">
    <ol>
      <?php wp_list_comments(array('callback' => 'commentslist')); ?>
    </ol>
  </div>

欢迎任何帮助,谢谢你的时间!

1 个答案:

答案 0 :(得分:0)

<div class="comment_list">
    <ol>
      <?php wp_list_comments(array('callback' => 'commentslist', 'reverse_top_level' => false)); ?>
    </ol>
  </div>

您可以在WordPress Codex

中查看所有可用选项