我正在使用此代码在主页上发布一篇帖子后显示广告。它工作得很好。但我想在一篇帖子后显示一则广告,在5篇帖子后再显示一则广告。循环将是什么。有什么建议吗?
<?php if((have_posts)): ?>
<?php $count=0; ?>
<?php while(have_posts()): the_post(); ?>
<?php $count ?>
<?php if($count==2): ?>
<div>Ads code here</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; ?>