5

我需要以编程方式创建 Drupal 7 网站中使用的标签列表。我正在浏览 api/functions,但找不到类似“get_list_of_terms()”的东西:-)

我应该如何进行?谢谢!J。

4

2 回答 2

14

确切地。一个稍微完整的例子是(你可以用你自己的词汇 vid 代替):

if ($terms = taxonomy_get_tree($vocabulary->vid)) {
  foreach ($terms as $term) {
      // Do something with $term->tid or $term->name
  }
}
于 2012-04-18T17:13:03.743 回答
5

要获取特定词汇表的分类术语列表,您可以使用taxonomy_get_tree

于 2012-04-18T15:32:20.790 回答