Este es el codigo que tengo para las categorias:
Código PHP:
Ver original<div id="categoria">
<div id="cat-name"><p><?php the_category(' > '); ?></p></div>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="cat">
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
<div class="navigation">
<?php if(function_exists('pagenavi')) { pagenavi
(); } ?></div>
<?php else : ?>
<h2>No encontrado</h2>
<p>Lo sentimos, intente utilizar nuestro formulario de búsquedas.</p>
<?php endif; ?>
</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