Fonction WordPress IS_TAG

<?php
if ( is_category() ) {
	echo 'Category Archive';
} elseif ( is_tag() ) {
	echo 'Tag Archive';
}
?>
Worried Walrus