Tengo un problema al listar las entradas según la categoria, esto si lo hace solo que se imprimen completas y no obedece al tag 'more' del wordpress. en el index general si sale todo correcto respetando el 'more', en por categoria es el problema. SI alguien le puede echar un ojito a mi código =( ...le estoy dando muchas vueltas y no llego a la solucion.
Código PHP:
<div class="col-center">
<p><h1 class="max"><?php wp_title(); ?></h1></p>
<?php query_posts('showposts=5&cat=4'); ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class="post-1 post hentry category-pictures category-fresh-works category-projects category-art-magazine" id="post-1">
<div class="border"><div class="indent">
<div class="title">
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute();?>"><?php the_title(); ?></a></h2>
<div class="date">
<?php the_time('j'); ?><span><?php the_time('M'); ?></span>
</div>
<div class="post-info">
Author: admin <a href="<?php the_permalink(); ?>" title=""><?php comments_popup_link('Se el primero en comentar','1 Comentario','% Comentarios' ); ?></a></div>
</div>
<div class="text-box">
<?php the_content(__('Leer mas')); ?>
</div>
<div class="link-edit"></div>
</div></div>
</div>
<?php endwhile; ?>