在评论网站上倒序显示评论列表


Display list of comments in reverse order on review website

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

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

任何帮助最欢迎,感谢您的时间!

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

你可以看到WordPress Codex中所有可用的选项