以前は、drupal 6 で特定の語彙からすべての用語を読み込んでカスタム メニューを作成する関数がありました。
function _taxonomy_top_links($vid = NULL) {
$terms = taxonomy_get_tree($vid);
$taxos = array();
foreach ($terms as $term) {
$taxos[] = array('title' => $term->name, 'taxonomy/term/' . $term->tid, 'attributes' => array('rel' => 'tag', 'title' => strip_tags($term->description)));
}
return theme('links', $taxos, array('id' => 'menu-'. $vid, 'class' => 'menu clearfix'));
}
これは、新しいフィールド API に関連していると思われる drupal 7 では機能しません。特定の語彙からすべての用語を取得して、ページ レベルで前処理するにはどうすればよいでしょうか?
助けてくれてありがとう。