Barhalli adlı üyeden alıntı: mesajı görüntüle
index.php'den bu kodu kaldırıp dener misin bi
Tamam yaptimda yukarıdaki bosluk gitti aşagıda çok boşLuk var bide

<?php get_header(); ?>

<!-- BEGIN content -->
<div id="content">

	<div class="buffer">
	
	<?php 
	$categories = get_categories('hide_empty=1'); 
	foreach ($categories as $category) :
	query_posts('showposts=1&cat='.$category->cat_ID);
	if (have_posts()) : the_post();
	?>

	<!-- begin post -->
	<div class="post">
		<h2><a href="<?php echo get_category_link($category->cat_ID); ?>"><?php echo $category->name ?></a></h2>
		<p class="date"><?php the_author_posts_link(); ?> Tarih <?php the_time('d F Y') ?> | <?php comments_popup_link('Yorum Yok', '1 Yorum', '% Yorum'); ?></p>
		<p><?php echo dp_clean($post->post_content, 200); ?></p>
		<a class="readmore" href="<?php the_permalink(); ?>">Devamını oku</a>
	</div>
	<!-- end post -->
	
	<?php endif; endforeach; ?>
	
	</div>

<?php get_sidebar(); get_footer(); ?>