I need help about kriesi pagination... I can see it but it's not working. When I click on page 2, it shows the content of the first page.
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
<?php query_posts( array
( 'post_type'=>'post',
'posts_per_page' => 3,
'paged' => $paged
)); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" class="middle-post">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
</article>
<?php endwhile; kriesi_pagination(); endif; wp_reset_query(); ?>