Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/04/2011, 13:27
Alejandrogm
Moderador
 
Fecha de Ingreso: julio-2009
Mensajes: 11
Antigüedad: 14 años, 9 meses
Puntos: 0
Respuesta: Como poner 2 estilos de post

Solucionado! con paginación funcionando:

Código:
<?php $i=1;  while (have_posts()) : the_post(); 
if($i<=2){
the_content();
}
else{
the_title();
};
$i++;?> 
<?php endwhile; ?>
Si cuanto lo separen para meter el HTML no funciona colocar el $i++; antes del if.

Gracias j_aroche.

Última edición por Alejandrogm; 21/04/2011 a las 13:51