BBP_Forums_Group_Extension::topic_pagination( array $args )
Fix pagination of topics on forum view
Description Description
Parameters Parameters
- $args
-
(Required)
Return Return
(array)
Source Source
File: includes/extend/buddypress/groups.php
public function topic_pagination( $args ) {
$new = $this->maybe_map_permalink_to_group( bbp_get_forum_id() );
if ( empty( $new ) ) {
return $args;
}
$args['base'] = trailingslashit( $new ) . bbp_get_paged_slug() . '/%#%/';
return $args;
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.2.0 | Introduced. |