Hi Mike, thanks for one more time ??
I tryed add this code, but the pagination doesn’t showed up again, I installed the plugin “pagenavi” for pagination … Do you think that need specify the number of post and the template I’m using?
I don’t know why it’s not working ??
I put this code:
<?php
global $query_string; parse_str( $query_string, $my_query_array );
$paged = ( isset( $my_query_array[‘paged’] ) && !empty( $my_query_array[‘paged’] ) ) ? $my_query_array[‘paged’] : 1; query_posts(“numposts=4&paged=$paged”);
?>
<?php query_posts(“cat=&paged=$paged”); if (have_posts()) : ?>
<?php if ( function_exists ( ‘the_loop_wp_tiles’ ) ) : ?>
<?php the_loop_wp_tiles(); ?>
<?php endif; ?>
<?php wp_pagenavi(); ?>
<?php endif; ?>