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<?php
get_header();
?>
<?php $count = 0;?>
<?php
$limite = get_option('posts_per_page');
$paginacion = (get_query_var('paged')) ? get_query_var('paged') : 1;
'showposts' => $limite,
'paged' => $paginacion
));
$wp_query->is_archive = true; $wp_query->is_home = false;
?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postindex" id="post-<?php the_ID(); ?>">
<div class="entry">
<a href="<?php the_permalink() ?>" rel="bookmark">
<img src="<?php $values = get_post_custom_values("poster"); echo $values[0]; ?>" alt="<?php the_title(); ?>" /></a>
</div>
</div>
<?php endwhile; else: ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
<div class="alignleft"><?php next_posts_link('« previous') ?></div>
<div class="alignright"><?php previous_posts_link('next »') ?></div>
<?php get_footer(); ?>