Reverse comment pagination numbers

i’ve used

wp_list_comments

like this:

<?php if (class_exists('Walker_Comment_Wink'))
    $walker = new Walker_Comment_Wink();
  else
    $walker="";

 wp_list_comments(array('walker' => $walker, 'type' => 'comment' , 'callback' => 'theme_comment2')); ?>

i used the plugin http://winkpress.com/articles/fix-reversed-comments-pagination/ to fix the “* and 1 comment” weirdness.

You have the option to pass

$reverse_top_level (boolean) (optional)
Setting this to true will display the most recent comment first then going back in order.
Default: null

you can check it in action here http://www.joaoleitao.com/viagens/acerca-do-autor/

Leave a Comment