Réponses:
Essayer..
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) devrait renvoyer le tid de la page de taxonomie (taxonomy / term / tid).
print_r(arg())
montre-t-on?
Je l'ai compris, voici ce que j'ai fait:
<?php
$termid = arg(2);
$term = taxonomy_term_load($termid);
$title = $term->name;
?>
Merci @Kevin pour votre aide.
Au lieu d'utiliser taxonomy_term_load () qui ne fonctionne pas bien à chaque fois, vous pouvez appeler:
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)
et elle ne fonctionne pas. :(