Эта ссылка поможет вам. Третий заголовок гласит: Вставьте рекламу после первого сообщения
Измените код для 6, где написано 2:
<?php if (have_posts()) : ?> // Here we check if there are posts
<?php $count = 0; ?>
<?php while (have_posts()) : the_post(); ?>
<?php $count++; ?> // While we have posts, add 1 to count
<?php if ($count == 6) : ?> // If this is post 6
//Paste your ad code here
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> // post title
<?php the_excerpt(); ?> // You may use the_content too
<?php else : ?> // If this is not post 6
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
ОБНОВЛЕНИЕ : Как заметил Гордон, вы спрашивали код каждые 6 сообщений (извините, я пропустил это при первом чтении). Так что код должен быть:
<?php if ($count % 6 == 0) : ?>