使用Get_the_Terms显示自定义分类中的第一个类别

时间:2016-11-04 作者:Damian Caynes

我已经设置了一个自定义帖子类型,并将自定义分类法作为类别。

我需要使用get_the_termswp_get_post_terms 返回自定义帖子类型中帖子的第一个类别。

但我不太明白如何使用它与get_the_category.

2 个回复
SO网友:Roland Allla

您好,这是我使用的一个示例:

<?php while ( have_posts() ) : the_post(); 

  $category = get_the_terms( $id, \'event_category\' );
  //get First Category
  $firstCategory = $category[0];
  //get category link
    $category_link = get_category_link($firstCategory->term_id);
    //echo category name
    echo $firstCategory->name;

 endwhile;
?>   
使用分类法slug更改event\\u类别

SO网友:vol4ikman

Try this one please:

$terms = get_the_terms(); $term = reset($terms);

相关推荐