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