尝试以下操作:
$cat = get_query_var(\'cat\');
$PozCat = get_category ($cat);
$PozCat->id // give to us current cat id.
然后在查询中使用此挂钩:
<ul>
<?php
$cat = get_query_var(\'cat\');
$PozCat = get_category ($cat);
//$PozCat->id
query_posts(\'posts_per_page=-1&cat=\'.$PozCat->id);
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li><a href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
</ul>