POST TIME:2019-09-29 14:47
dedecms模板中使用channel 標簽中為其指定typeid時 currentstyle無效的解決方法:
{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}
這種調用方式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}
這種調用方式currentstyle就無效了
論壇里有人說用把typeid=xxx改成channelid=1,簡直是無稽之談。
完美解決辦法:
本部分設定了隱藏,您已回復過了,以下是隱藏的內容
修改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!=” )