# DedeCms下拉式友情链接如何实现

*Published:* 2023-11-14
*Author:* 客服001

#### 温馨提醒

如果文章内容或图片资源失效，请留言反馈，我们会及时处理，谢谢

本文最后更新于2023年11月14日，已超过 180天没有更新



修改方法：

编辑打开\\include\\taglib\\flink.lib.php

查找 else if($type==’image’)

在其上面加入

```
else if($type=='option')
 {
        $link = ""<option value='"".$dbrow->url.""'>"".cn_substr($dbrow->webname,$titlelen).""</option>"";
}
```

在首页index.htm模板里面插入下面代码

```
<select> <option selected=""selected"">--相关链接地址--</option> {dede:flink row='24' type='option'/}</select>
```

然后更新首页就行了。