在 Drupal 7 中,您可以使用 taxonomy_term_load
函数获取本地化分类数据。以下是一个示例代码:
// 获取分类 ID
$tid = 123;
// 加载分类数据
$term = taxonomy_term_load($tid);
// 获取分类名称
$name = $term->name;
// 获取分类描述
$description = $term->description;
// 获取分类父级 ID
$parent = $term->parent;
// 获取分类权重
$weight = $term->weight;
// 获取分类图像
$image = $term->field_image;
// 获取分类的所有自定义字段
$custom_fields = $term->field_custom_field;
// 获取分类的所有父级分类
$parents = taxonomy_get_parents($tid);
// 获取分类的所有子分类
$children = taxonomy_get_children($tid);
// 获取分类的所有兄弟分类
$siblings = taxonomy_get_siblings($tid);
在上述代码中,我们使用了 Drupal 7 的内置函数来获取分类数据。您可以根据需要修改代码以满足您的需求。
请注意,Drupal 7 已经过时,建议您升级到更高版本的 Drupal,以获得更好的性能和安全性。
领取专属 10元无门槛券
手把手带您无忧上云