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
<?php get_header(); ?> <div id="wrapper"> <div id="arbol-web"><?php the_breadcrumb()?></div> <?php if ( have_posts() ) : query_posts('category_name=noticias&posts_per_page=2' );while ( have_posts() ) : the_post(); ?> <div id="contenido-post"> <section id="parrafo-post"> <h2><strong><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></strong></h2> <?php the_excerpt(); ?> <?php the_time('j - F - Y'); ?> a las <?php the_time('g:i a'); ?> <!--| Por: <?php the_author() ?>--> </section> <section id="img-post"> <?php //ESTO MUESTRA LA IMAGEN DE MINIATURA DE LA ENTRADA. $mi_imagen = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' , false ); // arreglo que contiene url, width , height }else{ //METO OTRA IMAGEN COMO 'NOTICIA NUEVA' ?> <img class="sin-foto" src="<?php echo bloginfo('template_url');?>/imagenes/sin_img.png" style="margin-top: 25px;"/> <?php } ?> </section> <div id="limpia"></div> </div><!-- end of contenido-parrafo --> <?php endwhile;?> <?php echo paginate_links() ?> <?php else: ?> <h2>No encontrado</h2> <p>Lo sentimos, intente utilizar nuestro formulario de búsquedas.</p> <?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!!!!