First, I must say you're plugin is a life saver, letting easily have archive page for post type.
It works great, but there's a problem with pagination.
When browsing to http://www.mysite.com/archive-type/page/2
I still get the first page viewed.
Is there a fix for that?
Many thanks,
Maor
http://wordpress.org/extend/plugins/simple-custom-post-type-archives/
I just tested it again on 2 different sites, and pagination works as expected...
Are you doing any post queries inside your template?
Does it work if you add a trailing slash? http://www.mysite.com/archive-type/page/2/
i had the same problem... i had to put something like this...
<?php
query_posts( array('post_type' => books, 'paged' => $paged) ); if (have_posts()) : php while (have_posts()) : the_post(); ?>
It's working for me now.
Thanks @jtsternberg, I actually forgot to use the paged='.$paged in my query
Now it's working great :)
took me a while to figure it out... so glad to help you out.