que tal compañero pues ya lo soluciono mira quedo de la siguiente manera:
Código PHP:
<div id="content" class="narrowcolumn" role="main">
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1;
$my_query = new WP_Query('showposts=6&paged=$page');
$wp_query = $my_query;
query_posts("showposts=6&paged=$page");?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post();?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a></h2>
<p><small>
<?php the_time('F jS, Y') ?>
<!-- by <?php the_author() ?> -->
</small> </p>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?></p>
</div>
<?php endwhile; ?>
</div>
Anteriormente este era el codigo original que traia por default
Código PHP:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a></h2>
<p><small>
<?php the_time('F jS, Y') ?>
<!-- by <?php the_author() ?> -->
</small> </p>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?></p>
</div>
<?php endwhile; ?>
Y este otro lo puse en el
footer.php Código PHP:
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
Solo que ahora me quedaron dos detalles compañero, mira
- Cuando le doy en la pagina 2 me manda a la pagina del servidor o pagina de error, ya que no encuentra la pagina 2
- Otro detalle que hasta abajo en el ultimo post aparece un link que dice asi <<Older Entries y bueno de igual manera cuando le doy ahi me manda a la misma pagina del servidor o pagina de error
como que me sugeririas hacer ahi compañero
gracias de antemnano
esperare tu respuesta que hasta el momento ha sido muy buena