Get the name of the first category
问题 I am trying to create a single page that lists the content of each category. I have managed to create the list. I now need to get the name of the category. I have the following code: <ul> <li> CATEGORY NAME HERE </li> <?php query_posts('cat=0'); ?> <?php while ( have_posts() ) : the_post(); ?> <li> <a href="<?php echo get_permalink(); ?>"> <?php the_title(); ?></a> </li> <?php endwhile; ?> </ul> How to call the name of the first category (0)? Current edit : Why won't multiple works? <div