• Resolved jocaasbe

    (@jocaasbe)


    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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@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.

    Thread Starter jocaasbe

    (@jocaasbe)

    Thank you Nobita. Worked perfectly!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reverse Comment Order’ is closed to new replies.