vkusnoserver
Код:
<?php if(have_posts()): ?>
<?php $count=0; ?>
<?php while( have_posts() ): the_post(); ?>
<?php $count++ ?>
<?php if( $count==6 ): ?>
<div>Здесь тизеры</div>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php else: ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>