アーカイブをオープンすると「カテゴリー」の見出しが表示されることに気が付かなかったので非表示にした。

WordPress
<div class="wrap">
--- ここから (↓) ---
<?php if ( have_posts() ) : ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );
?>
</header><!-- .page-header -->
<?php endif; ?>
--- ここまで (↑) ---
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
これで目障りだったアーカイブの見出し「カテゴリー」が消える。

