Ver Mensaje Individual
  #9 (permalink)  
Antiguo 12/10/2010, 17:46
Dinvaders
 
Fecha de Ingreso: octubre-2010
Ubicación: Uruguay
Mensajes: 12
Antigüedad: 13 años, 7 meses
Puntos: 0
Respuesta: Mostrar ultimos Wordpress post en index.php?

Lo que pueden hacer tambien es:

Código PHP:
Ver original
  1. <div id="post">
  2. <?php query_posts($query_string . 'showposts=5'); while ( have_posts () ) { the_post();?>
  3. <li>
  4. <a href="<?php the_permalink();?>" alt="<?php the_title();?>"><?php the_title();?></a>
  5. <php the_content('Leer más');?>
  6. </li>
  7. <?php } ;?>
  8. </div>

Sino pueden visitar [URL="http://www.dinvaders.com/trucos-de-wordpress-codigo-para-poner-los-ultimos-post-creados/"]este post[/URL] en Dinvaders que también se explica como poner cierta cantidad de posts y tambien elegir la categoría.