帝国CMS用灵动标签调用各种友情链接的方法

  • A+
所属分类:帝国cms教程

帝国CMS默认的友情链接标签内置的格式太坑爹了,无法满足个性化需求。

可使用灵动标签来调用:

调用文字链接:

[e:loop={'select * from [!db.pre!]enewslink where checked=1 and classid=1 order by lid',20,24,0}]<a href="<?=$bqr[lurl]?>"target="_blank"><?=$bqr[lname]?></a>[/e:loop]

 

调用图文链接:

[e:loop={'select * from [!db.pre!]enewslink where checked=1 and classid=1 order by lid',3,24,0}]<a href="<?=$bqr[lurl]?>" title="<?=$bqr[lname]?>" target="_blank"><img src="<?=$bqr[lpic]?>"/></a>[/e:loop]

其中,classid=1 为友情链接分类ID,checkde=1 为审核过的链接。

如果希望不需要指定分类,则去掉 and classid=1 即可。

下拉列表式友情链接调用:

<form id="form1" name="form1" method="post" action="">   <label for="FRIEND LINK ">友情链接:</label>   <select onchange="window.open(this.options[selectedIndex].value,'','');" name="FRIEND LINK" size="1" id="FRIEND LINK">       [e:loop={'select * from [!db.pre!]enewslink where checked=1 order by lid',20,24,0}]       <option value="<?=$bqr[lurl]?>">       <?=$bqr[lname]?>       </option>       [/e:loop]   </select></form>

 

  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: