scottpoulin (@scottpoulin)

Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • @scottpoulin

    Participant

    also add:
    add_filter( 'bbp_replies_pagination', 'my_pagination' );
    add_filter( 'bbp_search_results_pagination', 'my_pagination' );

    Though I couldn’t get the search results piece to work – those don’t seem to paginate at all, could be a plugin conflict or something though.

    @scottpoulin

    Participant

    I had a feeling there would be an easier way than a new plugin. Add this to your theme’s functions.php:

    function my_pagination( $args ) {
    	$args['prev_text'] = 'previous';
    	$args['next_text'] = 'next';
    	return $args;
    }
    add_filter( 'bbp_topic_pagination', 'my_pagination' );
Viewing 2 replies - 1 through 2 (of 2 total)