Здравствуйте!
Шаблоны category, archive предназначены для вывода цикла записей. Для вывода самой записи нужен шаблон single.php
Простой шаблон single.php:
<?php get_header();?>
<div class="content">
<h1><?php the_title();?></h1>
<?php the_content();?>
</div>
<?php get_footer();?>
Простой шаблон для archive || category.php
<?php get_header();?>
<div class="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
<?php the_excerpt();?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_footer();?>
А дальше уже стилизуйте под свои нужны