获取当前帖子中使用的分类名称

时间:2020-12-23 作者:ammar siddiqui

您好,我已经为自定义帖子创建了自定义分类法。我想获取当前帖子中使用的分类术语。如何获得它。

2 个回复
SO网友:ZealousWeb

您可以使用以下代码按帖子ID获取分类:

$yourterms = get_the_terms( $post->ID , array( \'taxonomy_name\') );
foreach ( $yourterms as $term ) {
 echo $term->name;
}

SO网友:its_ds_ 21
$tags = wp_get_post_tags($post->ID);
$html = \'<div class="post_tags">\';
foreach ( $tags as $tag ) {
$tag_link = get_tag_link( $tag->term_id );
 
$html .= "<a href=\'{$tag_link}\' title=\'{$tag->name} Tag\' class=\'{$tag->slug}\'>";
$html .= "{$tag->name}</a> ";  //this will get the  taxmont term.
}
$html .= \'</div>\';
echo $html;

This will Help You

相关推荐