Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/12/2013, 20:46
pinguisport85
 
Fecha de Ingreso: mayo-2011
Mensajes: 101
Antigüedad: 12 años, 11 meses
Puntos: 5
Respuesta: Problema con paginación en WP_Query

estimados

realice un cambio en mi codigo pero todabia no finciona,

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(); ?>