Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to limit activity items for per page?


Ali Erkurt
Participant

@alierkurt

OK, I found the solution. For those who need that here is the solution:

Add this to your functions.php:

`function my_query_filter( $query_string ) {
$query_string .= ‘&per_page=10’;
return $query_string;
}
add_filter( ‘bp_dtheme_ajax_querystring’, ‘my_query_filter’ );`

Skip to toolbar