Duda con PHP y Posts de Wordpress!!

Iniciado por KlaHavoK, 19 Noviembre 2013, 20:27 PM

0 Miembros y 1 Visitante están viendo este tema.

KlaHavoK

Hola a todos!!  ::)

Le estoy arreglando la web a un cliente. Le creé un blog en wordpress, y creé una sección de noticias donde a través del código siguiente:

Código (php) [Seleccionar]
<?php
require_once($_SERVER 'DOCUMENT_ROOT'].'/blog/wp-config.php');
$my_query = new WP_Query('showposts=5');
while (
$my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate $post->ID;
?>


<li>
<div id="big_wrapper">
<div id="wrapper">
<div id="cell">
<div class="content">
<?php the_post_thumbnail('medium'); ?>
</div>
</div>
</div>

   <div class="noticia">
    <span id="titulo"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></span><br>
    <span id="time"><?php the_time('j'?>/<?php the_time('M'?>/<?php the_time('Y'?></span><br>
    <span id="contenido"><?php the_excerpt(); ?></span><br>
    <span id="ver_mas" style="float: right;"><a href="<?php the_permalink() ?>">VER MÁS ></a></span>
   </div>
</li>
</div>

<?php posts_nav_link('separator','prelabel','nextlabel'); ?>

<?php endwhile;?>


convierto los posts en noticias. Mi pregunta es la siguiente:

Actualmente está trayendo 5 posts, y quisiera que me permitiera también traer los 5 posts siguientes, haciendo click en "Posts Mas antiguos" (como normalmente es en Wordpress). Cómo podría lograr eso?

Mil gracias a los que me puedan ayudar ; _ ;