Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,003
- How-to & Troubleshooting
- 129,526
- Creating & Extending
- 25,789
- Requests & Feedback
- 9,495
- Third Party Plugins
- 9,781
- Showcase
- 3,316
- Ideas
- 1,397
- Miscellaneous
- 9,169
-
well, you can ,but it is hardcoded in the bp-activity/bp-activity-templatetags.php
Open this file
and take a look at the function
bp_activity_template
You will see something there
like
$this->pag_links = paginate_links( array(
'base' => add_query_arg( 'acpage', '%#%' ),
'format' => '',
'total' => ceil( (int)$this->total_activity_count / (int)$this->pag_num ),
'current' => (int)$this->pag_page,
'prev_text' => '«',
'next_text' => '»',
'mid_size' => 1
));
Change the mid_size value from 1 to what ever you want.
Hope it helps.
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS