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,