我试图在wordpress博客中每3个帖子后显示一则广告。你们可以检查代码中的错误吗?
请参阅代码here
答案 0 :(得分:0)
请参阅Make $ after_every = 0并添加$ after_every ++ bottom of while循环
然后添加一个条件
if($after_every%3==0){ Show add}
我认为它有效。
答案 1 :(得分:0)
我无法弄清楚你为什么在那里使用模数。 http://php.net/manual/en/language.operators.arithmetic.php
我认为这是你不想要的。 我通常这样做的方式是:
if( $ad_counter >= 3 ) {
$ad_counter = 0;
echo '<h2 style="color:red;">Advertisement or custom content here</h2>';
}
你可以删除第12行:)