Skip to:
Content
Pages
Categories
Search
Top
Bottom

Reply order?


  • ritailsted
    Participant

    @ritailsted

    Hi

    I just want to know if it is possible to reverse the order of replies? I cannot find that possibility anywhere?

    Regards

    Rita

Viewing 1 replies (of 1 total)

  • Robin W
    Moderator

    @robin-w

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    function change_reply_order() {
    $args['order'] = 'DESC';
     return $args;
    }
    add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar