Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/05/2009, 21:38
Avatar de WillxD
WillxD
 
Fecha de Ingreso: febrero-2009
Ubicación: Lima =D!
Mensajes: 82
Antigüedad: 15 años, 9 meses
Puntos: 3
Respuesta: Plugin mostrar post solo con título y enlace

@lgga Solo debes agregar un contador, ahi te dejo el código:

Código:
<ul>
<?php query_posts('cat=1&showposts=9999'); ?>
<?php $cont = 1; $b = 2; ?>
<?php while (have_posts()) : the_post(); ?>
<?php if ($postnum %= $b) { ?>
	<li><a class="alignleft" href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
<?php } else {?> 
	<li><a class="alignright" href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
<?php } ?>
<?php $cont++; ?>
<?php endwhile;?>
</ul>
en tu CSS debes agregar las clases "alignleft" y "alignright" o puede ser que ya la tengas..

Salu2!