获取词汇表的分类术语

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取词汇表的分类术语相关的知识,希望对你有一定的参考价值。

  1. <?php if (count($taxonomy)): ?>
  2. <?php
  3. $terms = taxonomy_node_get_terms_by_vocabulary($node->nid, 1);
  4. foreach ($terms as $term) {
  5. $tags[] = l($term->name, taxonomy_term_path($term));
  6. }
  7. if ($tags){
  8. print t("Professional Areas") . ": " . implode(' | ', $tags);
  9. } ?>
  10. <br />
  11. <?php
  12. $terms = taxonomy_node_get_terms_by_vocabulary($node->nid, 2);
  13. foreach ($terms as $term) {
  14. $tagsTwo[] = l($term->name, taxonomy_term_path($term));
  15. }
  16. if ($tagsTwo){
  17. print t("Focus Areas") . ": " . implode(' | ', $tagsTwo);
  18. }?>
  19. <?php endif; ?>

以上是关于获取词汇表的分类术语的主要内容,如果未能解决你的问题,请参考以下文章

Drupal 7 在视图中获取分类术语列表

HTML 在词汇表中打印分类术语

打印词汇表中的分类术语

分类法:***术语视图?

如何在 Drupal 7 中使用视图模块列出和显示它们被分类词汇标记的项目

基于词汇的 Drupal 变化展示