Denemesini yapmadım.
<?php if ( have_posts() ) : ?>
<?php $say = 0; while ( have_posts() ) : the_post(); ?>
<?php if ($say == 2) : ?> <!-- Kaçıncı Yazıdan sonra gözükmesini istiyorsanız 2 yerine onu yazın. -->
<?php the_title( sprintf( '<h2 class="headline"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<?php the_excerpt(); ?>
<!-- Reklam kodları buraya -->
<?php else: ?> <!-- Diğer yazıların çekildiği kısım -->
<?php the_title( sprintf( '<h2 class="headline"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<?php the_excerpt(); ?>
<?php endif; ?>
<?php $say++ endwhile; ?>
<?php endif; ?>