dedecms模板 channel 标签中指定typeid时 currentstyle无效的解

夏天,他把手中的魔法棒轻轻一挥,带给咱们一片充满活力的蓝色。你瞧,蓝蓝的天空飘着朵朵白云,远处,蔚蓝的大海在夏风的吹拂下,卷起层层浪花。

dedecms模板中使用channel 标签中为其指定typeid时 currentstyle无效的解决方法:

{dede:channel type=’son’ row=’8′ currentstyle=”<li><a rel="nofollow noopener noreferrer" href=’~typelink~’ class=’thisclass’>~typename~</a> </li>”}
<li><a rel="nofollow noopener noreferrer" href=’[field:typelink/]‘>[field:typename/]</a> </li>
{/dede:channel}

这种调用方式currentstyle有效
但是:

{dede:channel type=’son’ row=’8′ typeid=1 currentstyle=”<li><a rel="nofollow noopener noreferrer" href=’~typelink~’ class=’thisclass’>~typename~</a> </li>”}
<li><a rel="nofollow noopener noreferrer" 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!=” )

本文dedecms模板 channel 标签中指定typeid时 currentstyle无效的解到此结束。抱最大的但愿,为最大的勤奋,做最坏的筹算。小编再次感谢大家对我们的支持!

标签: channel dedecms