답변:
시험..
http://api.drupal.org/api/drupal/modules--taxonomy--taxonomy.module/function/taxonomy_term_load/7
$term = taxonomy_term_load(arg(2));
$title = $term->name;
arg (2)는 분류 페이지의 tid (taxonomy / term / tid)를 반환해야합니다.
print_r(arg())
보여줍니까?
나는 내가 한 일을 알아 냈습니다.
<?php
$termid = arg(2);
$term = taxonomy_term_load($termid);
$title = $term->name;
?>
도움을 주신 @Kevin에게 감사합니다.
매번 제대로 작동하지 않는 taxonomy_term_load ()를 사용하는 대신 다음을 호출 할 수 있습니다.
function get_tag_name($tid) {
$query = db_select('taxonomy_term_data', 't');
$query
->condition('t.tid', $tid, '=')
->fields('t', array('tid', 'name'));
$result = $query->execute();
foreach ($result as $row) {
return $row->name;
}
}
Notice: Trying to get property of non-object in include() (line 79 of {my site}/templates/page.tpl.php)
하여 작동하지 않습니다. :(