hola veran he decidido ordenar mis entradas en forma de tema magazine
y usa una estructura como esta
Código PHP:
<?php query_posts('cat=-ID&showposts=6'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="latest-post-wrap">
<div class="latest-post">
<div class="comments"><?php comments_popup_link('0', '1', '%'); ?></div>
<div class="latest-title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?>
</a></h2>
</div>
<div class="latest-image">
<?php image_attachment('image', 265, 160); ?>
</div>
</div>
<div class="latest-content">
<div class="postMeta-front"><span class="date"><?php the_time('F j, Y') ?></span></div> <div class="clear"></div>
<p><?php
$excerpt = get_the_excerpt();
echo string_limit_words($excerpt,30);
?></p>
<p class="moretext"><a href="<?php the_permalink() ?>">Continue Reading...</a></p>
</div>
</div>
<?php endwhile; ?> <!-- END -->
</div>
el problema aqui es el siguiente, quiero agregarle los botones de post anteriores y recientes y en efecto se agregan cuando uso
Código PHP:
<?php
next_posts_link('« Anteriores');
previous_posts_link('Recientes »');
?>
pero no funcionan, es decir no muestra los otros post, solo los primero 8 hay alguna forma de solucionar esto o bien de mejorarlo para evitar problemas..
muchas gracias!