BBP_Forums_Group_Extension::replies_pagination( array $args )

Fix pagination of replies on topic view

Description

Parameters

$args

(array) (Required)

Return

(array)

Source

File: bp-forums/groups.php

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