我使用Yii在http://kitchenking.ebhasin.com
开发了我的项目在这个项目中,我实现了无限滚动,并且它按预期工作。
但是,我想每7页显示一次Google AdSense单元。
我知道一个页面最多只能展示四个Google广告。四个谷歌广告正常运作。问题出在前四个广告单元之后,其余广告未显示。
我在这里补充了我的条件:
<?php
$post_counter = 0;
$addnum = 0;
foreach($posts as $rec):
?>
<div class="post">
<?php
$rec_id = $rec['recipe_id']; ?>
$post_counter++;
if (($post_counter == 7) AND ($addnum < 4)) {
$addnum = $addnum + 1;
$post_counter=1;
}
?>
<script>
// Display an ad unit
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<?php } ?>
有没有解决方法呢?