post de wordpress en mi web

Iniciado por ;c1v!c, 4 Agosto 2011, 04:42 AM

0 Miembros y 1 Visitante están viendo este tema.

;c1v!c

bueno la idea es mas o menos como esta en el titulo.
lo q tengo hasta ahora es esto.


Código (php) [Seleccionar]
<?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!