Código PHP:
<?php wp_pagenavi(array( 'query' => $wp_query )); ?>
<?php $wp_query = null; $wp_query = $temp;?>
Ademas de esto solo poner una porción del post como quien diría las primera 8 lineas, algo así, gracias por su ayuda y atención.
este blog esta hecho en wordpress
Mi código actual es:
Código PHP:
<?php
$temp = $wp_query;
$wp_query = null;
$wp_query = new WP_Query();
$wp_query->query('posts_per_page=5'.'&paged='.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p><?php the_time('F jS, Y'); ?> by <?php the_author_posts_link(); ?></p>
<?php the_content(); ?>
<p class="postmetadata">Posted in <?php the_category(', '); ?></p>
<?php endwhile; ?>