我有这样的类别结构......
- Shirts
- Small
- Red
- blue
- green
- Medium
- Large
- Jackets
- Hats
...“衬衫”的 ID 为 1。当我这样做时...
<ul>
<?php
query_posts('cat=1&showposts=10&order=ASC');
if (have_posts()) : while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; else: ?>
<?php _e('Nothing Here!'); ?>
<?php endif; ?>
</ul>
... 不仅显示 Shirts 的孩子,还显示孙子。为了说明,屏幕上的输出显示小、红、蓝、绿、中和大,而不仅仅是小、中和大。
我怎样才能排除孙子?
提前致谢。