码迷,mamicode.com
首页 > 其他好文 > 详细

织梦dedecms 扩展channel栏目标签 获取交叉栏目名称和链接

时间:2014-10-28 15:11:20      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   使用   sp   文件   

channel栏目标签默认有调用顶级栏目(top)、子栏目(son)、同级栏目(self),那想获取交叉栏目的名称和链接怎么获取呢?

其实在原来的代码上改一下就可以了。下面是具体代码。打开文件channel.lib.php:

在搜索:

$topid = $refObj->TypeLink->TypeInfos[‘topid‘];

在其下方增加:

$crossid = $refObj->TypeLink->TypeInfos[‘crossid‘];

再搜索:

$topid = $row2[‘topid‘];

在其下方增加:

$crossid = $row2[‘crossid‘];

然后再查找:

1     else if($type==‘son‘)
2     {
3         if($typeid==0) return ‘‘;
4         $sql = "SELECT id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath
5           From `#@__arctype` WHERE reid=‘$typeid‘ And ishidden<>1 order by sortrank asc limit 0, $line ";
6     }

在下方增加:

1     else if($type==‘cross‘)
2     {
3         if($typeid==0) return ‘‘;
4         $sql = "SELECT id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,crossid
5           From `#@__arctype` WHERE id in ($crossid) And ishidden<>1 order by sortrank asc limit 0, $line ";
6     }

如此修改之后就可以在模板上使用了。

模板代码为:

bubuko.com,布布扣
1                         {dede:channel type=‘cross‘}
2                         <a href=‘[field:typelink /]‘ title="[field:typename/]" >[field:typename/]</a> 
3                         {/dede:channel}
View Code

这样就可以使用了。

织梦dedecms 扩展channel栏目标签 获取交叉栏目名称和链接

标签:style   blog   http   color   os   ar   使用   sp   文件   

原文地址:http://www.cnblogs.com/cnteam/p/4056830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!