Topic: Paginate modification
Hi!
I want to change the way that number of pages are shown, removig the "..." and showing all the page numbers.
For example, if a post have 8 pages, they are shown like this: Pages: 1 2 3 ... 8
I'd like to show all of them: Pages: 1 2 3 4 5 6 7 8
I think it can be possible changing this part; but I couldn't be succesfull
if ($cur_page <= ($num_pages-3))
{
if ($cur_page != ($num_pages-3))
$pages[] = '…';
$pages[] = '<a href="'.$link_to.'&p='.$num_pages.'">'.$num_pages.'</a>';
}
Somebody can help me?
Thanks so much !