Ver Mensaje Individual
  #5 (permalink)  
Antiguo 27/11/2010, 21:40
Avatar de metacortex
metacortex
Viejo demente
 
Fecha de Ingreso: junio-2004
Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 20 años, 7 meses
Puntos: 832
Respuesta: Problema paginacion WP

La idea es que aprendas, no que te solucionen el problema (hay una sección para eso si realmente quieres irte por esa vía).

Intenta esto:

Código PHP:
Ver original
  1. <?php
  2. get_header();
  3. ?>
  4.  
  5. <?php $count = 0;?>
  6. <?php
  7. $limite = get_option('posts_per_page');
  8. $paginacion = (get_query_var('paged')) ? get_query_var('paged') : 1;
  9. query_posts(array(
  10.         'showposts' => $limite,
  11.         'paged' => $paginacion
  12.     ));
  13. $wp_query->is_archive = true; $wp_query->is_home = false;
  14. ?>
  15.  
  16. <?php if (have_posts()) : ?>
  17.  
  18. <?php while (have_posts()) : the_post(); ?>
  19.  
  20. <div class="postindex" id="post-<?php the_ID(); ?>">
  21.  
  22.  
  23.    
  24.     <div class="entry">
  25.             <a href="<?php the_permalink() ?>" rel="bookmark">
  26.             <img src="<?php $values = get_post_custom_values("poster"); echo $values[0]; ?>" alt="<?php the_title(); ?>" /></a>
  27.         <?php if(function_exists('the_ratings')) { the_ratings(); } ?>  
  28.         <?php if(function_exists('the_views')) { the_views(); } ?>  
  29.     </div>
  30.    
  31.  
  32.  
  33. </div>
  34.  
  35. <?php endwhile; else: ?>
  36.             <h2>Not Found</h2>
  37.             <p>Sorry, but you are looking for something that isn't here.</p>
  38. <?php endif; ?>
  39.  
  40.                 <div class="alignleft"><?php next_posts_link('&laquo; previous') ?></div>
  41.                 <div class="alignright"><?php previous_posts_link('next &raquo;') ?></div>
  42.  
  43. <?php get_footer(); ?>