Ver Mensaje Individual
  #9 (permalink)  
Antiguo 10/12/2013, 20:42
pinguisport85
 
Fecha de Ingreso: mayo-2011
Mensajes: 101
Antigüedad: 13 años
Puntos: 5
Respuesta: Dudas con plantillas category-slug.php

estimado

Realice un cambio pero todabia no me funciona, porque sera?.

Código PHP:
<?php $paged = (get_query_var('paged'))? get_query_var('paged'): 1;
            
$args = array(
                
'category_name' => 'mi categoria',
                
'posts_per_page' => 5,
                
'paged' => $paged,                
            );
            
        
$the_query = new WP_Query$args );
        
?>

<!-- loop-->
        <?php while ($the_query -> have_posts() ) : $the_query -> the_post(); ?>