Taxonomy's title 时间:2016-11-29 作者:wmdohod 我已经安装了Woocomece插件和自定义帖子类型“product”。也有这种类型的类别名为“product\\u cat”。我需要在单个产品上显示类别名称。php我试过这样做:<?php $term = get_term_by( \'name\', get_query_var( \'term\' ), get_query_var( \'taxonomy\' ) ); echo $term->name; ?> 但这是不成功的。当我检查返回到$term的类型时,它显示为布尔值。 2 个回复 最合适的回答,由SO网友:GKS 整理而成 这段代码将返回分配给当前产品的所有类别。global $post; $terms = get_the_terms( $post->ID, \'product_cat\' ); foreach ($terms as $term) { $cat_name .= $term->name.\', \'; break; } echo $cat_name; 在内部添加此代码single-product.php希望这有帮助! SO网友:Dan. $terms = get_the_terms( get_the_ID(), \'product_cat\' ); foreach ($terms as $term) { echo $term->name; } 文章导航