Ver Mensaje Individual
  #7 (permalink)  
Antiguo 27/10/2010, 17:43
American2010
 
Fecha de Ingreso: abril-2003
Mensajes: 1.129
Antigüedad: 21 años, 1 mes
Puntos: 34
Respuesta: Cambiar posicion en que aparecen los posts

Empieza con algo simple como:

Código PHP:
if (have_posts()) :
   while (
have_posts()) :
      
the_post();
      
the_content();
   endwhile;
endif; 
Ya luego según el Theme que estás armando pondras los DIVs y los Titles segun correspondan, por ejemplo:

Código PHP:
if (have_posts()) :
   while (have_posts()) :
      the_post();
?>
<h2 id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y'?> <!-- by <?php the_author() ?> --></small>

<?php      the_content();
   endwhile;
endif;
Y todos los datos que necesites mostrar del post.

Acá tienes guía completa en español.

http://codex.wordpress.org/es:The_Loop_in_Action

De ahí levanté el ejemplo.
__________________
elGastronomo