BBP_Forums_Group_Extension::replies_pagination( array $args )

Fix pagination of replies on topic view

Description

Parameters

$args

(Required)

Return

(array)

Source

File: bp-forums/groups.php

1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
public function replies_pagination( $args ) {
    $new = $this->maybe_map_permalink_to_group( bbp_get_topic_id() );
    if ( empty( $new ) )
        return $args;
 
    global $wp_rewrite;
 
    $args['base'] = trailingslashit( $new ) . $wp_rewrite->pagination_base . '/%#%/';
 
    return $args;
}

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.