Parent and child categories

时间:2015-01-06 作者:Ciprian

下面是a的一部分WP_Query

我有两个父类别ABC和12,每个都有几个子类别。

在第一个td 我想让ABC儿童频道的slug类和12个儿童频道的slug类。

该职位可能属于两个子类别之一,或同时属于两个子类别。一个来自ABC,一个来自12,或者一个来自ABC,一个来自12。

$inCat = get_the_category(get_the_ID());

echo "<td>".(!empty($inCat[0]->slug) ? $inCat[0]->slug : "")."</td>";
echo "<td>".(!empty($inCat[1]->slug) ? $inCat[1]->slug : "")."</td>";
如何做到这一点?

1 个回复
最合适的回答,由SO网友:deflime 整理而成

看看get_the_terms()?

<?php 
    // Change \'category\' if using a custom taxonomy and not referring to the default blog categories
    $terms = get_the_terms( $post->ID, \'category\' ); 
?>

<tr>
  <td><?php

    foreach($terms as $term) {

      // show which categorie(s) under ABC
      if( $term->parent == \'0\' ) ) {
        echo $term->name;
      } 

    }
  ?></td> 

  <td><?php

    foreach($terms as $term) {

      // show which categorie(s) under 12
      if( $term->parent == \'1\' ) ) {
        echo $term->name;
      }

    }
?></td>
</tr>

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post