在Wordpress中显示特定类别

时间:2018-06-04 13:37:38

标签: wordpress show categories

我有超过800个类别,因为1个帖子可能有超过10个。我想在首页上只显示X个类别。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

$id = get_the_ID();
$cats = wp_get_post_categories($id);
$i=0;
foreach ( $cats as $cat ){
  if($i <10){
    //Dosomething with $cat
  }
  $i++;
}

通过设置计数器,您可以显示所需的类别