Hiya,
One of our clients has requested to have extended pagination numbers at the bottom of the page. Currently we are using the standard EE code:
{paginate}
<!-- pagination //-->
<div class="page_nav" 15px;clear:both;"> {pagination_links}
<ul>
{first_page}
<li class="page"><a href="http://{pagination_url}" class="page-first"><<</a></li>
{/first_page}
{previous_page}
<li class="page"><a href="http://{pagination_url}" class="page-previous"><</a></li>
{/previous_page}
{page}
<li class="page"><a href="http://{pagination_url}" class="page-{pagination_page_number} {if current_page}active{/if}">{pagination_page_number}</a></li>
{/page}
{next_page}
<li class="page"><a href="http://{pagination_url}" class="page-next">></a></li>
{/next_page}
{last_page}
<li class="page"><a href="http://{pagination_url}" class="page-last">>></a></li>
{/last_page}
</ul>
{/pagination_links} </div>
<!-- pagination //-->
{/paginate}Looks like this:
<< < 3 4 5 6 7 > >>
The client wants more to display at the bottom. Is there a way to extend the amount of page numbers? Thanks for any insight. :cheese:
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.