我們在用織夢系統(tǒng)制作網(wǎng)站時,經(jīng)常會用到channel標簽來調(diào)子欄目。但是,很多朋友會遇到這種情況在使用channel標簽來調(diào)子欄目的時候,指定 “type=son typeid=‘xx’” currentstyle竟然不好使。對于這個問題本站的出來方法是:
1、首先給出大家列出誤認為正確的解決在top=‘son’ type=xx(指定ID)時候的channel屬性currentstyle不好用的方法
代碼如下:
-
{dede: type='son' typeid='12' currentstyle="<li><a href='~typelink~' title="~typename~">~typename~</a> </li>"}
-
<li><a title="[field:typename/]" href="[field:typelink/]">[field:typename/]</a></li>
-
{/dede:channel}
解決的辦法:把typeid=‘12’改為channel=‘1’ (文章模型id),首頁除外,其他頁面不需要指定typeid=xx,會自動判斷當前位置。
解決方法如下:
-
{dede: type='son' channel='1' currentstyle="<li><a href='~typelink~' title="~typename~">~typename~</a> </li>"}
-
<li><a title="[field:typename/]" href="[field:typelink/]">[field:typename/]</a></li>
-
{/dede:channel}
我經(jīng)過經(jīng)測試這種在top=‘son’ type=xx(指定ID)時候的調(diào)用方式currentstyle根本不好用,簡直是扯淡。
2、解決channel屬性currentstyle在top=‘son’ type=xx(指定ID)時候不好用的正確方法
-
修改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!='' )
我經(jīng)測試這種調(diào)用方式currentstyle有效,可以解決在top=‘son’ type=xx(指定ID)時候channel標簽currentstyle樣式無效不起作用的問題。