En el home.php de tu template, antes del loop donde se listan los post, escribe esto:
Código :
Ver originalquery_posts(array(
'showposts' => 3,
));
Un ejemplo:
Código :
Ver original<?php
query_posts(array(
'showposts' => 3,
));
?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part('content', 'booklisting'); ?>
<?php endwhile; ?>
<div class="clear"></div>
<?php enif; ?>