Afficher les Tags d’un article en WordPress

Afficher les Tags d’un article en WordPress

$html = '';
$posttags = get_the_tags();
if ($posttags) {
	$array = [];
	foreach($posttags as $tag) {
		$array[] = '<a href="/tag/' . $tag->slug . '/">' . $tag->name . '</a>';
	}
	$html .= 'Tags: ' . implode(', ', $array) . '<br>';
}
echo $html;