给首页第一篇文章上加上环绕广告
只要把以前文章下列代码
<?php if ($wp_query->current_post == 0) : ?>
广告代码
<?php endif; ?>修改为:<?php if ($wp_query->current_post == 0) : ?>
<div style=”float:right; padding:3px;”>
广告代码
</div>
<?php endif; ?>就可以显现环绕效果。float:right为居右显示,假设希望广告居左显示只要改为float:left即可。然后把修改后的代码插入到索引页模版 (index.php)中的<?php the_content(); ?>前面
顶一下,不错不错....
页:
[1]