Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/01/2011, 13:53
Avatar de Nekko
Nekko
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 7 meses
Puntos: 656
Respuesta: Dudas sobre mi web

Yo probaría con algo asi en category.php:

Código:
<ul>
<?php $lacat = get_query_var('cat');
			$args=array(
		        'showposts'=>30,
			   'paged'=>$paged,
			   'cat'=>$lacat,
                           'orderby'=>'title' // Le pones lo que quieras 
			   );
			query_posts($args);
		if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
		<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
		
		<?php endwhile; endif ?>
                </ul>
                <?php else: endif; ?>
Fijate acá los parametros de order y orderby http://codex.wordpress.org/Function_...ce/query_posts

Para el sitemap tenés plugins!
__________________
Taller para crear themes wordpress desde cero | Presupuestos para trabajos particulares vía MP