Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/02/2015, 16:19
Avatar de el_tigre
el_tigre
 
Fecha de Ingreso: febrero-2006
Ubicación: Perú
Mensajes: 1.044
Antigüedad: 18 años, 1 mes
Puntos: 8
Respuesta: Entradas ordenadas

Gracias Chicho, acá pongo mi código

Código PHP:
<?php
get_header
(); 
?>

    <section id="primary" class="content-area eleven columns">
        

        <h4 class="arc-post-title">Productos: <?php single_cat_title(); ?></h1>
        <div class="content-ver-sep"> </div>
 
            <?php if ( have_posts() ) : ?>            

            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>
                
            <div class="cajadatos">                
                <h6 class="post-title">
                <a href="<?php the_permalink(); ?>">
                <?php the_title();?></a>
                </h6>                
                                
                <div align="center" class="efecto">
                    <a href="<?php the_permalink() ?>">        
                        <?php the_post_thumbnail('thumbnail'); ?>
                    </a>
                        <?php the_excerpt(); ?>                
                </div>                
                <div class="clear"> </div>                         
            </div>            

            <?php endwhile; ?>
            <div align="center">    
                <?php wp_pagenavi(); ?>
            </div>
            <br>
            <?php else : ?>
            <?php get_template_part'content''none' ); ?>
            <?php endif; ?>    
    </section><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer
(); ?>
Yo he probado poniendo así y no me funcionó

Código PHP:
<?php 
query_posts
('orderby'=> 'title''order' => 'ASC');
         while (
have_posts ()): the_post();
 
?>