百度了下,有很多答案,但测试了都是不对的,都是老版本的
在这里元素模板站长为您解答:
找到dedecms文件:/include/helpers/channelunit.helper.php
在这个代码下面
if($rank!=0 || $ismake==-1 || $typeid==0 || $money>0){
加入以下代码即可:
global $dsql;
$flag = $dsql->GetOne("select flag from `dede_archives` where id = $aid;");
$flag = $flag['flag'];
if(preg_match("/j/",$flag)){
$addontable = $dsql->GetOne("select art.id,cht.addtable from `dede_arctype` art left join `dede_channeltype` cht on art.channeltype = cht.id where art.id = $typeid");
$addtable = $addontable['addtable'];
$GoUrl = $dsql->GetOne("select redirecturl from $addtable where aid = $aid");
$redirecturl = $GoUrl['redirecturl'];
if($redirecturl != ''){
return $redirecturl;
} }
到这里就完成了,是不是很简单