Hi,
I love the idea of this extension but I’m struggling to get it to work. I’m running EE1.6.6 hosted at MediaTemple.
I’ve hacked the core.paginate.php file and added parameters to my {exp:weblog:entries} tag but that breaks the template. Before trying to get to the bottom of what I’m doing wrong I have a few questions to see if it’s worth it…
1) Can I have pagination both top and bottom?
2) Do I still need to declare {paginate} [...] {/paginate} where I want the pagination to appear? (I’ve tried both with and without)
Neither of these factors are clear on the EE forum extension thread and it’s a shame that there’s no demo of the markup that results, merely an image.
My motivation for trying this plugin is that it seems to offer a route to executing a proper semantic markup of the pagination links…
Since the links are a list, they ought to be marked up along the lines of:
<div class="pagination">Page {current_page} of {total_pages}:
<ul>
<li class="first"><a href="url">First</a></li>
<li class="previous"><a href="url">Previous</a></li>
<li><strong>5</strong></li>
<li><a href="url">6</a></li>
<li><a href="url">[...]</a></li>
<li class="next"><a href="url">Next</a></li>
<li class="last"><a href="url">Last</a></li>
</ul>
</div>
I was planning on changing your use of span to li!
Hoping you can help.