我正在为WordPress中的档案博客帖子运行一个循环。我想在每两篇博文中展示Adwords的广告。
我尝试在循环中添加一个计数器,但我认为我没有使用正确的代码,因为我没有在页面上看到广告。
这是我的代码:
<?php $sql="select * from bbs_fight_schedule order by id DESC";
$i=0; // variable for counter
$res=mysql_query($sql);
while($ress=mysql_fetch_array($res)){
$sqlsn=mysql_query("select * from bbs_fighter_profiles where id='$ress[1]'");
$reesn=mysql_fetch_array($sqlsn);
$f1=$reesn[1];
$sqlsn1=mysql_query("select * from bbs_fighter_profiles where id='$ress[2]'");
$reesn1=mysql_fetch_array($sqlsn1);
$f2=$reesn1[1];
?>
<div id="sch_hold">
//Blog post Excerpt here
</div>
//Calling Google Ads Here
<?php
$i++;
if(!$i%2) {
echo '<div>Google Ad Code Here</div>';
}
?>
<?php endwhile; // end of the loop. ?>