Antworten:
Versuchen..
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) sollte die tid der Taxonomieseite (taxonomy / term / tid) zurückgeben.
print_r(arg())
zeigt?
Ich habe es herausgefunden, hier ist was ich getan habe:
<?php
$termid = arg(2);
$term = taxonomy_term_load($termid);
$title = $term->name;
?>
Vielen Dank an Kevin für Ihre Hilfe.
Anstatt taxonomy_term_load () zu verwenden, das nicht jedes Mal gut funktioniert, können Sie Folgendes aufrufen:
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)
und er funktioniert nicht. :(