I need to set the number of pagelinks displayed between previous and next buttons in EE Pagination.
I’m currently ristricting my projects channel to display 1 entry at a time, and paging them via small dots to the RHS of the page.
(Using CSS to convert pagelinks, 1, 2, 3 etc into dots.)
I want to increase the number of dots (pagelinks) being displayed between the left and right arrows (next and previous buttons)
- or just display them all.
Link to site below (as of March 30 2012):
http://www.vsdesign.com.au/index.php/site/our_work/projects/branding/P1
Channel tag:
{exp:channel:entries channel="projects" disable="trackbacks" paginate="bottom" limit="1" orderby="date" sort="desc" paginate="top"}Pagination Code:
{paginate}
{pagination_links}
<ul class="dots">
{previous_page}
<li><a href="http://{pagination_url}" class="page-previous">Previous Page</a></li>
{/previous_page}
{page}
<li><a href="http://{pagination_url}" class="page-{pagination_page_number} {if current_page}current{/if}">{pagination_page_number}</a></li>
{/page}
{next_page}
<li><a href="http://{pagination_url}" class="page-next">Next Page</a></li>
{/next_page}
</ul>
{/pagination_links}
{/paginate}v2.3.1 - Build: date 20111017
If anyone could help me out, that would be sweet.
Ask me if you need any other info.