drupal 7 taxonomy_vocabulary_machine_name_load 没有显示字段
drupal 7 taxonomy_vocabulary_machine_name_load did not show the fields
我在 D7 中创建了一个词汇表并在其中列出了术语。我添加了一个名为 "Icon Color" 的字段。现在,在视图中,我添加了如下代码块,它完美地显示了 tid、name、description 等字段,但没有显示字段 "Icon Color".
<?php
$name = 'Programme';
$myvoc = taxonomy_vocabulary_machine_name_load($name);
$tree = taxonomy_get_tree($myvoc->vid);
foreach ($tree as $term) {
print_r($term);
}
?>
字段在词汇表中列出如下:
您必须通过分类术语加载函数使用术语 id 加载分类。希望下面的代码对你有帮助。
$name = 'YOUR_MACHINE_NAME';
$myvoc = taxonomy_vocabulary_machine_name_load($name);
$tree = taxonomy_get_tree($myvoc->vid);
foreach ($tree as $term) {
$term = taxonomy_term_load($term->tid);
print_r($term);
}
我在 D7 中创建了一个词汇表并在其中列出了术语。我添加了一个名为 "Icon Color" 的字段。现在,在视图中,我添加了如下代码块,它完美地显示了 tid、name、description 等字段,但没有显示字段 "Icon Color".
<?php
$name = 'Programme';
$myvoc = taxonomy_vocabulary_machine_name_load($name);
$tree = taxonomy_get_tree($myvoc->vid);
foreach ($tree as $term) {
print_r($term);
}
?>
字段在词汇表中列出如下:
您必须通过分类术语加载函数使用术语 id 加载分类。希望下面的代码对你有帮助。
$name = 'YOUR_MACHINE_NAME';
$myvoc = taxonomy_vocabulary_machine_name_load($name);
$tree = taxonomy_get_tree($myvoc->vid);
foreach ($tree as $term) {
$term = taxonomy_term_load($term->tid);
print_r($term);
}