首先,给模型添加一个新字段用来保存淘宝客链接
然后模板内容页中用
<a href="{dede:field name=‘phpurl‘/}/url.php?id={dede:field name=‘id‘/}" target="_blank">淘宝客链接</a>
最后最重要的是 url.php了,下载后放置到plus文件夹内,需根据自己添加的 淘宝客链接字段名称更改文件中的查询
最后效果图如图
URL.PHP 以下为内容
----------------------
<?php
require_once(dirname(__FILE__)."/../include/common.inc.php");
$arcID = $id = (isset($id) && is_numeric($id)) ? $id : 0;
$row = $dsql->GetOne("Select taobaourl From `#@__addonarticle` f,`#@__archives` arc where arc.`id` = f.`aid` and f.`aid` = ‘$id‘");
$taobaourl = $row[‘taobaourl‘];
if ($taobaourl ==""){
echo ‘暂无链接信息‘;
}
else {
header("Location: $taobaourl");
}
?>
时间: 2024-10-07 12:38:04