Forums
Forums / Theme: raindrops / Reverse Comment Order
(@jocaasbe)
12 years, 4 months ago
I need to reverse the order of the comments on my blog. New posts would appear first and older posts would descend. Can this be done. I tried a plugin but it was outdated for your code. Thanks for any help
(@nobita)
Hi jocaasbe
Please open comments.php line:54
<?php wp_list_comments( array( 'callback' => 'raindrops_comment','format' => $raindrops_document_type ,) );?>
above code change below( add ‘reverse_top_level’ => true )
<?php wp_list_comments( array( 'callback' => 'raindrops_comment','format' => $raindrops_document_type ,'reverse_top_level' => true,) );?>
Thank you.
Thank you Nobita. Worked perfectly!
The topic ‘Reverse Comment Order’ is closed to new replies.
(@jocaasbe)
12 years, 4 months ago
I need to reverse the order of the comments on my blog. New posts would appear first and older posts would descend. Can this be done. I tried a plugin but it was outdated for your code.
Thanks for any help