BBP_Forums_Group_Extension::replies_pagination( array $args )

Fix pagination of replies on topic view


Description Description


Parameters Parameters

$args

(Required)


Top ↑

Return Return

(array)


Top ↑

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

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.