Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/08/2012, 11:33
laura_moreno14
Invitado
 
Mensajes: n/a
Puntos:
categorias que muestren post en orden ascendente

Este es el codigo que tengo para las categorias:

Código PHP:
Ver original
  1. <div id="categoria">
  2. <div id="cat-name"><p><?php the_category(' &gt; '); ?></p></div>
  3. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  4. <div class="cat">
  5.     <h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  6.     <?php the_excerpt(); ?>
  7.     </div>
  8.     <?php endwhile; ?>
  9.     <div class="navigation"><?php if(function_exists('pagenavi')) { pagenavi(); } ?></div>
  10.    <?php else : ?>
  11. <h2>No encontrado</h2>
  12. <p>Lo sentimos, intente utilizar nuestro formulario de b&uacute;squedas.</p>
  13. <?php endif; ?>
  14. </div>

se que tengo que usar orderby=asc, si no me equivoco tengo que cambiar el loop utilizando query pero no se como hacerlo, donde ponerlo si.

mil gracias