<div class="careerleft">
<?php query_posts('cat=9&paged='.get_query_var('paged')); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<p class="career">"><?php the_title(); ?></p>
<p>Category: <?php single_cat_title()?></p>
<p>Date posted:<?php the_time('F j, Y') ?></p>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>
</div>
我想显示子类别名称,但是当我使用 时,它只显示父类别名称。在我的类别中,父类别名称是“职业”,该类别有 3 个子类别名称,即管理、IT 相关和会计。显示子类别名称的代码是什么?