我在WP中制作主题但是我找不到显示单个帖子的类别的方法,我想显示具有单个帖子的类别而不是所有类别,我正在使用... < / p>
<?php $args = array ('hide_empty' => 0,'title_li' => false,'style' => 'none',);wp_list_categories($args);?>
但这显示所有类别,我不需要这个。我是新手,如果有人可以帮助我,我会很开心:D
在我忘记之前,抱歉,如果我的英语不好。
答案 0 :(得分:2)
您可以使用以下代码获取特定帖子的所有类别
$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;
}
答案 1 :(得分:0)
如果有人需要,请<?php the_category(',');?>