style.css; aşağıdaki kodu ekleyin

.sayfala{display: block;margin-top: 10px;margin-bottom: 40px;}
index.php;

<?php get_header(); ?>
 
	<div id="contentbg-l">
 
	<?php if (have_posts()) : ?>
 
 
<?php include (ABSPATH . '/wp-content/plugins/sohbet.php'); ?>
 
		<?php while (have_posts()) : the_post(); ?>
 
      <div class="post">
 
      <h1><a href="<?php the_permalink() ?>"  rel="bookmark" title="Permanent Link to <?php the_title_attribute();  ?>"><?php the_title(); ?></a></h1>
 
      <p>Kategori: <?php the_category(', ') ?></p>
 
      <?php the_content('Devamını Oku &raquo;'); ?>
 
      <div class="comment">
 
         <p>Yazan <?php the_time('F jS, Y') ?> by <?php  the_author() ?></p>
 
         <p class="comments"><?php comments_popup_link('Yorum  Yok »', '1 Yorum »', '% Yorumlar »'); ?></p>
 
      </div>
 
      </div>
 
 
 
<?php endwhile; ?>
 
<div class="sayfala">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>  
 
 </div>
 
 
 
	<?php else : ?>
 
 
 
		<h1>Bulunamadı</h1>
 
		<p class="cont">Üzgünüz, aradığınız şey burada değil.</p>
 
 
 
	<?php endif; ?>
 
	</div>
 
<?php get_sidebar(); ?>
 
<?php get_footer(); ?>