Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/04/2010, 15:43
Panelista
 
Fecha de Ingreso: septiembre-2007
Mensajes: 18
Antigüedad: 17 años, 2 meses
Puntos: 0
Administrar noticias

Estoy haciendo una pagina similar a esto
http://www.fr20.com.ar/ayuda.jpg

Necesito que las noticias se vayan acomodando automaticamente a medida que las haga, me aconsejaron usar wordpress y con script se pasarian a mi web automaticamente y se acomodarian.
Consegui este script: pero, o no lo supe poner bien o no funciona:
Alguien me da una mano?
gracias!


<?php require_once($_SERVER [ 'DOCUMENT_ROOT'].'/aqui-el-url/blog/wp-config.php'); ?>

<?php $my_query = new WP_Query('showposts=3');

while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>

<div id="post-<?php the_ID(); ?>">
<li><a href="<?php the_permalink() ?>" target="_blank" rel="bookmark" class="titublog">
<?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;

?></div>