我刚为节点创建启用了多个术语,我只想展示那些多项术语 作为一个块中的树,我尝试使用以下代码
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
根据所选用户,将相应地显示为树。
任何人都请帮忙,