Hi,
I'm using WP 3.0 and using this code on my archive page
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts( array('post_type' => array( 'products' ), 'posts_per_page'=>3, 'paged'=>$paged ));
if (have_posts()) : while (have_posts()) : the_post();
my pagination code working great, the first page is ok but when clicking page 2 returns error 404 page.
in short
this working properly
?cat=8
but this not
?cat=8&paged=2
It was working with 2.9!
I've tried everthing i know but no chance!
All helps are greatly appreciated
Thanks