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>
¿Alguien tiene alguna idea si es posible?
Saludos,