When I try to paginate (with any plugin or manually) I always get the same, the page/2 or page/8 goes to the same first article
my loop is like:
<?php
global $post;
$args = array( 'posts_per_page' => 1,'cat' => '1,3,4,5,7,36,429,432', 'paged' => get_query_var('page') );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
Any idea??