Skip to:
Content
Pages
Categories
Search
Top
Bottom

Limit the number of posts

  • @joviyach

    Participant

    I was wondering if it is possible to limit the number of posts in a forum to like 50, after which point the oldest posts get replaced by the newest?

Viewing 4 replies - 1 through 4 (of 4 total)
  • @robin-w

    Moderator

    I understood up until

    after which point the oldest posts get replaced by the newest?

    I expect you can limit a forum to only show the latest 50 topics, come back if that is what you want

    @joviyach

    Participant

    Yes, that is pretty much it. My explanation was more wordy than it needed be. :-\

    @robin-w

    Moderator

    something like

    function rew_max_shown ($args) {
    $args['max_num_pages'] = 2 ;
    return $args ;
    }
    
    add_filter ('bbp_before_has_topics_parse_args', 'rew_max_shown') ; 

    in your functions file

    Functions files and child themes – explained !

    @joviyach

    Participant

    Thanks. Will give it a shot this evening.

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