Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/01/2013, 09:49
Avatar de madman_18
madman_18
 
Fecha de Ingreso: agosto-2010
Mensajes: 792
Antigüedad: 14 años, 4 meses
Puntos: 14
Pregunta Paginación en Wordpress

Hola a todos!

Estoy implementando lo que sería la paginación para el php archive.php

Pero no sé por qué siempre me va al index cuando pulso sobre la numeración...y ya no sé por qué porque me estoy volviendo loco
El código que tengo en el archive.php es el siguiente:
Código PHP:
Ver original
  1. <?php get_header(); ?>
  2. <div id="wrapper">
  3.     <div id="arbol-web"><?php the_breadcrumb()?></div>
  4.     <?php    
  5.     if ( have_posts() ) : query_posts('category_name=noticias&posts_per_page=2' );while ( have_posts() ) : the_post(); ?>
  6.         <div id="contenido-post">    
  7.             <section id="parrafo-post">
  8.                 <h2><strong><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></strong></h2>
  9.                 <?php the_excerpt(); ?>
  10.                 <?php the_time('j - F - Y'); ?> a las <?php the_time('g:i a'); ?> <!--| Por: <?php the_author() ?>-->
  11.             </section>
  12.             <section id="img-post">
  13.                 <?php //ESTO MUESTRA LA IMAGEN DE MINIATURA DE LA ENTRADA.    
  14.                         if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) {
  15.                             $mi_imagen =  wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' , false );  // arreglo que contiene url, width , height
  16.                             the_post_thumbnail(array(220,200));
  17.                         }else{
  18.                             //METO OTRA IMAGEN COMO 'NOTICIA NUEVA'
  19.                             ?>
  20.                             <img class="sin-foto" src="<?php echo bloginfo('template_url');?>/imagenes/sin_img.png" style="margin-top: 25px;"/>
  21.                 <?php
  22.                         }
  23.                 ?>
  24.             </section>
  25.             <div id="limpia"></div>
  26.         </div><!-- end of contenido-parrafo -->        
  27.     <?php endwhile;?>
  28.     <?php    
  29.     echo paginate_links()    
  30.     ?>
  31.     <?php else: ?>
  32.    
  33. <h2>No encontrado</h2>
  34. <p>Lo sentimos, intente utilizar nuestro formulario de búsquedas.</p>
  35. <?php endif; ?>

De inicio pasa que no me muestra la posibilidad de navegar (como si el paginate_links() no funcionase)...he probado con otras cosas como el wp_corenavi() que he visto por ahí que es bastante usado en Wordpress).

si alguien pudiera ayudarmee.....Gracias!!!!
__________________
"Si consigues ser algo más que un hombre, si te entregas a un ideal, te convertes en algo muy diferente"