获取第一个类别的名称

我正在尝试创建一个列出每个类别的内容的页面。我设法创建了列表。我现在需要获取类别的名称。我有以下代码:

< ul> < li> CATEGORY NAME HERE < /li> < ?php query_posts('cat=0'); ?> < ?php while ( have_posts() ) : the_post(); ?> < li> < a href="http://www.srcmini.com/< ?php echo get_permalink(); ?>"> < ?php the_title(); ?> < /a> < /li> < ?php endwhile; ?> < /ul>

如何称呼第一个类别的名称(0)?
当前编辑:为什么不会有多个作品?
< div class="first-col"> < ul> < ?php query_posts('cat=0'); ?> < ?php while ( have_posts() ) : the_post(); ?> < li> < ?php $category = get_the_category(); echo $category[0]-> cat_name; ?> < /li> < li> < a href="http://www.srcmini.com/< ?php echo get_permalink(); ?>"> < ?php the_title(); ?> < /a> < /li> < ?php endwhile; ?> < /ul> < /div> < div class="first-col"> < ul> < li> < ?php $category = get_the_category(); echo $category[0]-> cat_name; ?> < /li> < ?php query_posts('cat=3'); ?> < ?php while ( have_posts() ) : the_post(); ?> < li> < a href="http://www.srcmini.com/< ?php echo get_permalink(); ?>"> < ?php the_title(); ?> < /a> < /li> < ?php endwhile; ?> < /ul> < /div>

#1【获取第一个类别的名称】你必须获取类别数组, 并从该数组中回显第一个类别。 http://codex.wordpress.org/Function_Reference/get_the_category
< ?php $category = get_the_category(); echo $category[0]-> cat_name; ?>

#2根据wordpress开发人员的法典:
$categories = get_the_category(); if ( ! empty( $categories ) ) { echo '< a href="' . esc_url( get_category_link( $categories[0]-> term_id ) ) . '"> ' . esc_html( $categories[0]-> name ) . '< /a> '; }

这将为你提供第一个类别, 并将其链接到该类别的页面。
#3还有一个简短代码插件, 可帮助你根据类别, 术语等创建列表。http://wordpress.org/plugins/display-posts-shortcode/

    推荐阅读