获取词汇表的分类术语
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取词汇表的分类术语相关的知识,希望对你有一定的参考价值。
<?php if (count($taxonomy)): ?> <?php $terms = taxonomy_node_get_terms_by_vocabulary($node->nid, 1); foreach ($terms as $term) { $tags[] = l($term->name, taxonomy_term_path($term)); } if ($tags){ print t("Professional Areas") . ": " . implode(' | ', $tags); } ?> <br /> <?php $terms = taxonomy_node_get_terms_by_vocabulary($node->nid, 2); foreach ($terms as $term) { $tagsTwo[] = l($term->name, taxonomy_term_path($term)); } if ($tagsTwo){ print t("Focus Areas") . ": " . implode(' | ', $tagsTwo); }?> <?php endif; ?>
以上是关于获取词汇表的分类术语的主要内容,如果未能解决你的问题,请参考以下文章