BBP_Forums_Group_Extension::topic_pagination( array $args )

Fix pagination of topics on forum view

Description

Parameters

$args

(array) (Required)

Return

(array)

Source

File: bp-forums/groups.php

	public function topic_pagination( $args ) {
		$new = $this->maybe_map_permalink_to_group( bbp_get_forum_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.