Merhaba,
İlk olarak
category.php adında bir sayfa oluşturarak tema klasörünüzün içerisine atınız.
Sonrada aşağıdaki verdiğim kodları içerisine ekleyip kendinize göre düzenleyiniz.
<?php get_header(); ?>
<div class="sol">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<div class="kat"><?php the_category(', ') ?></div>
<div class="okunma"><?php if(function_exists('the_views')) { the_views(); } ?></div>
<div class="yorum"><?php comments_number('Yorum Yok', '1 Yorum ', '% Yorum' );?></div>
<div class="devam"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">Devamını Oku</a></div>
<?php endwhile; else: ?>
<p><?php _e('Uzgunum,aradiginiz yazi yok veya tasinmis.'); ?></p>
<?php endif; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>