Skip to:
Content
Pages
Categories
Search
Top
Bottom

BBPress 50 max

Viewing 1 replies (of 1 total)

  • Robin W
    Moderator

    @robin-w

    1. use this plugin

    bbp style pack

    dashboard>settings>bbp style pack>forum Display – item 11

    or 2. using code

    to set to say 60

    add_filter ('bbp_before_has_forums_parse_args', 'rew_number_of_forums') ;#
    
    function rew_number_of_forums ($args) {
    	$args['posts_per_page'] = 60 ;
    return $args ;
    }

    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

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