dreadstock,
il y a 14 ans
hey hop, j'ai fini par trouver. voici le code.
<?php
$terms = get_the_terms($post->ID, 'categorytheme');
// loop through each term and perform your check
foreach ( $terms as $term ) {
if($term->name == 'Wordpress') {
echo '<div class="home-icone"><img src="img/wordpress.jpg" alt="Thème Wordpress"/></div>';
}
if ($term->name == 'Joomla') {
echo '<div class="home-icone"><img src="img/joomla.jpg" alt="Thème Joomla"/></div>';
}
}
?>