我不明白。直截了当的抄本,
<?php
// my code
$cat = get_the_category();
$catName = $category[0]->cat_name;
//straight outa the codex
// The Query
query_posts( array ( \'category\' => $catName, \'posts_per_page\' => -1 ) );
// The Loop
while ( have_posts() ) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile;
// Reset Query
wp_reset_query();
?>
结果是整个博客中的每一篇文章,而不是$catName类别中的每一篇文章。怎么了?