织梦指定子栏目后channel标签的currentstyle样式不起作用
元素模板站长在做站的时候发现,织梦调用栏目 只要加上指定栏目后 就会让 currentstyle不起作用
下面就是解决方法:
修改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!='' )
这样就可以完美解决这个问题了