zhangjih 发表于 2010 年 10 月 2 日 12:43:23

给首页第一篇文章上加上环绕广告


只要把以前文章下列代码
<?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(); ?>前面

曾经潇洒过丶 发表于 2011 年 2 月 18 日 17:07:14

顶一下,不错不错....
页: [1]
查看完整版本: 给首页第一篇文章上加上环绕广告