名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
当使用软件模型而且只有一个下载地址时,咱们都喜欢用本地地址,在站点列表页时直接输出这个地址,方便访客下载。
打开 \include\extend.func.php 添加个相关具体操作方法
/** * 获取软件模型本地地址 * * @access public * @param string $aid 文章id * @return string */ if (!function_exists('GetDownLink')) { function GetDownLink($aid) { global $dsql; $row= $dsql->GetOne("SELECT softlinks FROM `dede_addonsoft` WhERE aid = {$aid}"); if(!is_array($row)){ return ''; } else{ $dtp = new DedeTagParse(); $dtp->LoadSource($row['softlinks']); foreach($dtp->CTags as $ctag) { if($ctag->GetName()=='link') { $link = trim($ctag->GetInnerText()); } } } return $link; } } |
网站的前台模板中具体调用
首页/站点列表页
网站内容页
{dede:field.id function=GetDownLink(@me)/}
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。织梦程序删除得德广告模块