广告块无法正确放置

时间:2012-01-30 23:17:37

标签: php css wordpress

基本上,我需要在页面底部没有文字的图像位于测试帖4的位置(它将成为Google Adsense块,但我现在使用图像作为占位符)。我不知道该怎么做,现在代码如下:

<div class="google_ad_post">
    <?php if ($count == 3) { ?>
        <br /><img src="****" alt="post ad">
    <?php } ?>

    <?php $count++; ?>
    </div>

然而,图像仍然位于页面底部。我该如何解决这个问题?

这是图片:

我暂时无法发布图片,因此图片的网址为http://i.imgur.com/7rw5B.jpg

1 个答案:

答案 0 :(得分:0)

我必须看到您的代码可以帮助您更好地使用脚本部分,但是这样的逻辑应该有效:

<?php
$count = 0;
foreach( $posts as $post ) : ?>
    <?php if ($count == 3) { ?>
    <div class="google_ad_post">
        <img src="****" alt="post ad">
    </div>
    <?php } else { ?>
    <div class="post" id="post-<?php the_ID(); ?>><div class="content"><?php the_content(); ?></div>
    <?php } ?>

    <?php $count++; ?>
<?php endforeach; ?>