I want to show the child category name not the parent category name
- by Vhal
<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>
I want to show the child category name, but when I used the , it only shows the parent category name. In my categories, the parent category name is "careers", and this category has 3 child category names which are Managerial, IT Related and Accounting. What will be the code to show the child category name?