Respuestas:
Tratar..
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) debería devolver el tid de la página de taxonomía (taxonomy / term / tid).
print_r(arg())
muestra?
Lo descubrí, heres lo que hice:
<?php
$termid = arg(2);
$term = taxonomy_term_load($termid);
$title = $term->name;
?>
Gracias @Kevin por tu ayuda.
En lugar de usar taxonomy_term_load () que no funciona bien cada vez, puede llamar a:
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)
y no funciona. :(