Temanızda bazı noktaları editleyip, aynı sonucu gayet rahat elde edebilirsiniz..
Örneğin, düz metinleri yayınlayacağınız kategori id'si 3 olsun.

Öncelikle index.php dosyasını editleyerek başlıyoruz:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
satırlarını arasına şunu ekleyin:
<?php if(is_home()) {query_posts('cat=-3');} ?>
(cat=-3 yazdık kategori idsini 3 varsayarak)

Daha sonra, id'yi 3 olarak düşündüğümüz için, yeni bir php sayfası yaratıyoruz ve "category-3.php" adını veriyoruz.

category-3.php içeriği:
<?php get_header(); ?>
<div class="page">
<?php get_sidebar(); ?>
	<!-- start content -->
	<div id="content">
	<?php if (have_posts()) : ?>
		<?php while (have_posts()) : the_post(); ?>
		<div class="details">
			<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
			<p class="info"><?php the_time('F jS, Y') ?> tarihinde, <?php the_author() ?> tarafından, <?php the_category(', ') ?> altına yazıldı. Hakkında <?php comments_popup_link('Yorum Yok »', '1 Yorum yapıldı »', '% Yorum yapıldı »'); ?></p>
				<div class="entry">
					<?php the_content('Devamını Oku &raquo;'); ?>
				</div>
			<div class="clear"></div>
			<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
			</div><!-- Item Div -->
			<?php endwhile; ?>
			<div class="clear"></div>
		<div class="Nav"><?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?></div>
<?php endif; ?>
</div><!-- End CONTENT Div -->
	<div class="clear"><!-- --></div>
	</div><!-- End PAGE Div -->
<?php get_footer(); ?>
bu şekilde olacak...

daha sonra hepsini kaydedip, sonuca bakıyoruz