bueno la idea es mas o menos como esta en el titulo.
lo q tengo hasta ahora es esto.
<?php
require_once($_SERVER [ 'DOCUMENT_ROOT'].'/miblog/wp-config.php');
$my_query = new WP_Query('showposts=3');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;
?>
// el loop imprimira cada post dentro un li
<li><a href="<?php the_permalink() ?>" target="_blank" rel="bookmark" class="titulopost">
<?php the_title(); ?></a><br />
<p>
<strong> En:</strong> <?php the_category(', ') ?> <br />
<strong>El: </strong><?php the_time('F jS, Y') ?> <br />
<strong>Por: </strong><?php the_author() ?> <?php comments_popup_link('sin comentar', '1 comentario', '% comentarios'); ?>
</p>
</li>
<?php endwhile;?>
lo q necesito es q ademas de todo eso aparezca el contenido del post y el titulo.
pero sin q me redireccione al blog.
Saludos!