1
  <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 相关和会计。显示子类别名称的代码是什么?

4

1 回答 1

0

在这里你必须先提取子类别。了解如何提取Wordpress 类别

提取父类别的所有类别

<?php $args = array( 'type' => 'post', 'parent' => 9, 'taxonomy' => 'category' );?>

<?php $categories = get_categories( $args ); ?>

提取所有类别后,创建循环以打印它们

于 2013-03-18T13:42:14.117 回答