In BuddyPress, the members-loop.php uses the following code to display the pagination.
<?php echo bp_members_pagination_links();?>
I should be able to add an array like this to help limit the amount of numbers and to remove the Next and Previous buttons.
<?php echo bp_members_pagination_links(array(
'mid_size' => 2,
'end_size' => 0,
'prev_next' => False
));?>
For some reason this isn't working.
On my blog page I'm able to modify the pagination with no problem.
Does anyone know why this is happening? Is there something special about the BP Members page pagination that is different from all other pages?
Thx
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…