BBP_Forums_Group_Extension::topic_pagination( array $args )

Fix pagination of topics on forum view


Description Description


Parameters Parameters

$args

(Required)


Top ↑

Return Return

(array)


Top ↑

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;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.