Pagenavi não muda de página
-
Se alguém puder ajudar, será muito útil. Utilizo o plugin pagenavi, só que quando clica para trocar de página, o link se altera para: /page/2. Só que continua o mesmo conteúdo da página 1. E também continua lá em baixo: Página 1 de 3.
Segue o código do index.php
<?php get_header(); ?>
<div id=”content”>
<?php include (TEMPLATEPATH . ‘/slide.php’); ?>
<?php if (is_home()) { query_posts(“category_name=geral”); } ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?><div class=”single” id=”post-<?php the_ID(); ?>”>
<div class=”title”>
<h2><?php the_title(); ?></h2>
<div class=”date”></span> <span class=”clock”> <?php the_time(‘F – j – Y’); ?></span></div>
</div><div class=”cover”>
<div class=”entry”>
<?php the_excerpt() ?>
<div class=”clear”></div></div>
</div><div class=”singleinfo”>
</div>
</div>
<?php endwhile; ?>
<div class=”clear”></div>
<div id=”navigation”>
<?php if(function_exists(‘wp_pagenavi’)) : ?>
<?php wp_pagenavi() ?>
<?php else : ?>
<div class=”alignleft”><?php next_posts_link(__(‘« Older Entries’,’arclite’)) ?></div>
<div class=”alignright”><?php previous_posts_link(__(‘Newer Entries »’,’arclite’)) ?></div>
<div class=”clear”></div>
<?php endif; ?></div>
<?php else : ?>
<h1 class=”title”>Not Found</h1>
<p>Sorry, but you are looking for something that isn’t here.</p><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
- O tópico ‘Pagenavi não muda de página’ está fechado para novas respostas.