建筑页面,每3个帖子发布一次广告 时间:2011-11-21 作者:markyeoj 当前此代码http://pastebin.com/As0exwZy 正在显示10篇文章,因为我在阅读设置中设置了它。现在我想要的是显示广告(widgetize)每3个职位。。。我该怎么做? 1 个回复 最合适的回答,由SO网友:Geert 整理而成 $i = 0; while (have_posts()) { $i++; the_post(); // Output the post the_title(); the_content(); // Output an ad after each third post if ($i % 3 === 0) { echo \'ad\'; } } The% 被称为modulus operator. 结束 文章导航