Tags et catégories
";
echo 'Romans
';
$romans = get_the_terms($post->ID, 'roman');
foreach( $romans as $roman ) {
echo " " . $roman->name . "";
}
echo "";
} else {
$categories = get_the_category();
echo "";
}
$tags = get_the_tags();
if ($tags) {
echo "";
}
?>