wordpress get archive title

<?php
// Step 1: Get the current archive type
$archive_type = get_query_var('post_type') ? get_post_type_archive_title(get_query_var('post_type')) : single_term_title('', false);

// Step 2: Output the archive title
echo '<h1>' . $archive_type . '</h1>';
?>