3

Is there any way to count how many pages there is in pagination? I'm not talking about Collection count, but something like pagination count maybe?

Teja Bhagavan Kollepara
  • 3,816
  • 5
  • 32
  • 69
simond
  • 191
  • 2
  • 10

1 Answers1

7

A pagination is linked to a collection. To get the total number of pages use this:

$collection->getLastPageNumber();

If you have a pagination block in your page you can get the last page number like this:

$block->getLastPageNum();
Marius
  • 197,939
  • 53
  • 422
  • 830
  • I know magento-stackexchange want me to avoid thanks, but i say it anyway, thank you - it was exactly what i needed :) – simond Sep 28 '13 at 18:35