I would like to paginate my categories, and other listings with page numbers (instead of just the "previous" link.
I'm looking at WP-Paginate, but I'm still a bit confused about where to find the php I need to replace and how to do it in the Pagelines framework. For posts pagination. This is what the WP-Paginate pages say - but I don't see these theme files in Pagelines.
1) Open the theme files where you'd like pagination to be used. Depending on your theme, this may be the loop.php file or the index.php, archive.php and search.php files. The twentyeleven theme places the pagination code in functions.php in the twentyeleven_content_nav() function.
2) Replace your existing previous_posts_link() and next_posts_link() code block with the following:
<?php if(function_exists('wp_paginate')) { wp_paginate(); } ?>
Catrina was working to help me with this in live chat, but I'm still a bit vague on exactly what steps I need to take this work. I'm developing a big antiques website - where chronology (previous post / next posts) isn't releavant, I need numbers! I'd like to make the pagination work on all kinds of pages: searches, categories, view listings, etc.
Can you help?












