从我的Drupal获取所有分类法

时间:2011-03-09 10:31:29

标签: php drupal taxonomy

有人知道如何从Drupal检索我的所有分类列表? 谢谢!

2 个答案:

答案 0 :(得分:3)

$vocabularies = taxonomy_get_vocabularies();

foreach ($vocabularies as $vocab) {
    $terms = taxonomy_get_tree($vocab->vid,  0, -1, 1);
        foreach($terms as $term){
               $items[]= l($term->name, "taxonomy/term/$term->tid");
           }
  }

if(count($items)) {
  return theme('item_list', $items);
}

答案 1 :(得分:0)

你在考虑像taxonomy_get_vocabularies()这样的东西吗?