I downloaded and installed the Plugin wp_pagenavi I placed at the end of my code, it appears only that page does not click, either 2 ... 3 ... it does not page, it always repeats items 1 to 10.
Code
<?php get_header(); ?>
<div class="contentCenter">
<div class="internalContent">
<h1> <?php echo "Categoria "; single_cat_title(''); ?> </h1>
<?php query_posts($query_strings . "&order=ASC"); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="postList">
<div class="postListImage">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail(array(198, 198)); ?>
</a>
</div>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p style="font-size:12px; margin-top:4px;">
<i>Publicado por <strong><?php the_author(); ?></strong> em <strong> <?php the_time('d/m/Y'); ?></strong></i>
</p>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>" id="read_more_link">
Continuar Lendo >>
</a>
<div class="visualClear"></div>
</div>
<?php
endwhile;
else:
?>
<p class="no-posts-found">Nenhum post encontrado.</p>
<?php
endif;
?>
<?php wp_pagenavi(); ?>
</div>
</div>
<?php get_footer(); ?>
What could I do to make it work?
Note: I'm new to Wordpress.