Pagination and categories

Post Reply
Don D
Posts: 1
Joined: Tue Feb 03, 2015 9:44 am

Pagination and categories

Post by Don D »

Hello,

the list of category thumbs on my index page is getting really long. Is it possible to use pagination - display my categories on several pages - and how can it be done.

Thanks
admin
Site Admin
Posts: 37994
Joined: Wed Sep 10, 2008 11:43 am

Re: Pagination and categories

Post by admin »

There's no autopagination tag for category thumbs

But you can do something like

if ($_GET['page'] == 2) {

output categories let's say 50-100

} else {

output categories let's say 0-50

}

and add some links like <a href='/?page=2'>
Don't forget to run script update
Post Reply