View Single Post
  #1   IP: 218.2.66.82
Old 2006-02-08, 05:54 PM
lingerie lingerie is offline
初级会员
 
Join Date: 2006-01-14
Posts: 10
lingerie 正向着好的方向发展
Default VBB3中如何给帖子的第一楼加广告(以Google广告为例)

很多人想知道如何给1楼的帖子加广告,其实很简单的,显示帖子的时候不是有 第1楼,第2楼吗?只要在适当的地方加个判断,如果是第1楼就显示广告就可以了。

首先修改 postbit 模板(如何你使用的是传统方式,就修改postbit_legacy模板),查找:
Quote:
<a href="bank.php?action=postmoneyratingadd&amp;postid=$post[postid]$session[sessionurl]"><img src="$stylevar[imgdir_button]/reward.gif" alt="$vbphrase[reward]" border="0" /></a>
在前面加上判断:
<if condition="$post['postcount'] == '1'">
</if>

后在<if>和</if>之间加上你从广告商处得来的广告代码,

<script type="text/javascript"><!--
google_ad_client = "xxxxxx";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_channel ="";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

当然,在<script>前和</script>后你可以加上例如<center>之类的修饰广告位置的语句。
Reply With Quote