如何在Drupal中使用树结构显示块节点术语?

时间:2011-04-07 13:43:13

标签: drupal drupal-6 drupal-views drupal-taxonomy

我刚为节点创建启用了多个术语,我只想展示那些多项术语 作为一个块中的树,我尝试使用以下代码

if ( arg(0) == 'node' && is_numeric(arg(1)) ) {
$node = node_load(arg(1));
if (module_exists('taxonomy')) {
    $terms = taxonomy_link('taxonomy terms', $node);
    print theme('links', $terms, array('class' => 'node-terms'));
} else {
    print 'No associated categories.';
}
}

但是没有运气它只显示所有条款,但我必须显示如下

- parent term1 
   - sub term 1.1
- parent term 2
   - sub term 2.1
       -- sub sub term 2.1.3

根据所选用户,将相应地显示为树。

任何人都请帮忙,

1 个答案:

答案 0 :(得分:0)

查看Taxonomy Lineage模块:

http://drupal.org/project/lineage