东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国CMS灵动标签调用友情链接

2016-05-12 站长 站长日志

 

帝国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>

 

文章评论