Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/09/2010, 12:34
MrCreativity
 
Fecha de Ingreso: agosto-2009
Mensajes: 3
Antigüedad: 14 años, 8 meses
Puntos: 0
Integrar WP al sitio.

Hola,

Tengo una web y el blog.
Lo que he encontrado es solamente listar los post del blog en mi sitio:

Código PHP:
<ul>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></a><br />
<?php comments_popup_link(__("Comments (0)"), __("Comments (1)"), __("Comments (%)"), "grey"); ?>
<?php 
endwhile; else: ?>
<?php 
endif; ?>
</ul>
Pero yo no quiero eso, si no lo que quiera hacer es mostrar el texto, imagenes (o un thumbail) es decir el ultimo post completo, no un link hacia el.

¿Alguien tiene alguna idea si es posible?

Saludos,