有人知道如何从Drupal检索我的所有分类列表? 谢谢!
答案 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()这样的东西吗?