Skip to:
Content
Pages
Categories
Search
Top
Bottom

Reverse Title Order


  • esutfin
    Participant

    @esutfin

    I have created a list of a few topics within various forums of this blog – http://xproof7.com/global/forums/

    I’d like to have the oldest topics displayed at the top of each forum and the newest at the bottom.

    How do I achieve this?

    Thank you.

Viewing 1 replies (of 1 total)

  • Pascal Casier
    Moderator

    @casiepa

    Hi,
    Copy this code into your functions.php:

    function casiepa_bbp_has_topics() {
      $args['order'] = 'ASC'; // 'ASC' (Ascending), 'DESC' (Descending, Default)
      return $args;
    }
    add_filter('bbp_before_has_topics_parse_args', 'casiepa_bbp_has_topics' );

    Pascal.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar