0
votes

I want yii2 pagination to display only Previous and Next buttons excuding page number's links.

I have searched but not found proper solution.

My pagination widget in view :

<?php echo LinkPager::widget([

    'pagination' => $pagination,

    'prevPageLabel' => 'Previous',

    'nextPageLabel' => 'Next',

    ]); 

?>

I just want Previous and Next buttons in pagination and hide page numbers link.

1

1 Answers

3
votes

Set maxButtonCount to 0.

<?= LinkPager::widget([
   'pagination' => $pagination,
   'prevPageLabel' => 'Previous',
   'nextPageLabel' => 'Next',
   'maxButtonCount' => 0,
]); ?>