本文將介紹dedecms(織夢(mèng))中channel 標(biāo)簽 指定typeid時(shí) currentstyle無效的修復(fù)辦法
- {dede:channel type=’son’ row=’8′ currentstyle=”<li><a href=’~typelink~’ class=’thisclass’>~typename~</a> </li>”}
- <li><a href=’[field:typelink/]‘>[field:typename/]</a> </li>
- {/dede:channel}
這種調(diào)用方式currentstyle有效
但是:
- {dede:channel type=’son’ row=’8′ typeid=1 currentstyle=”<li><a href=’~typelink~’ class=’thisclass’>~typename~</a> </li>”}
- <li><a href=’[field:typelink/]‘>[field:typename/]</a> </li>
- {/dede:channel}
這種調(diào)用方式currentstyle就無效了
論壇里有人說用把typeid=xxx改成channelid=1,簡(jiǎn)直是無稽之談。
完美解決辦法:
修改include/taglib/channel.lib.php
查找:
- if( ($row['id']==$typeid || ($topid==$row['id'] && $type==’top’) ) && $currentstyle!=” )
改成
- if( ( $row['id']== $refObj->TypeLink->TypeInfos['id'] || ($topid==$row['id'] && $type==’top’) ) && $currentstyle!=” )