如何在Wordpress中显示文章类别


How to show post categories in Wordpress?

我正在WP中制作一个主题,但我找不到显示单个帖子类别的方法,我想显示有单个帖子的类别,而不是所有类别,我正在使用。。。

<?php $args = array ('hide_empty' => 0,'title_li' => false,'style' => 'none',);wp_list_categories($args);?>

但这显示了所有类别,我不需要这个。我是新来的,如果有人能帮助我,我会很高兴的:D

在我忘记之前,如果我的英语不好,对不起。

您可以使用以下代码获取特定帖子的所有类别

$terms = wp_get_post_terms($post_id,'category');
foreach ($terms as $term) {
    echo $cat_name = $term->name;
    echo "<br>";
    echo $cat_id = $term->term_id;    
}

如果有人需要,是<?php the_category(',');?>