我有一个previous question在这个问题上结合了两个问题......但我觉得我解释得有点模糊......太多的故事......所以我会一次只问一个问题:)
我想知道如何检查Drupal 7中的规则是否存在分类术语。 我想我需要使用自定义PHP规则和本机Drupal函数(类似于check_if_term_exists()?)。
但我似乎无法找到正确的方法。
答案 0 :(得分:2)
美好而轻松:
$tid = 5; // The term ID, you can't load by term name as such because multiple terms may have the same name within different (and even within the same) vocabularies.
$term = taxonomy_term_load($tid);
if ($term) {
// The term exists
}
else {
// The term doesn't exist
}