织梦Dedecms联动方式二级变一级的方法_DedeCms教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
以下代码都注掉
- /*
- $sontype = ( ($househx % 500 != 0) ? $househx : 0 );
- $toptype = ( ($househx % 500 == 0) ? $househx : ( $househx-($membertype%500) ) );
- $fields['househx'] = "<a href=’{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&househx={$toptype}&nativeplace={$nativeplace}’><b>{$em_househxs[$toptype]}</b></a> ";
下级显示不显示
- foreach($em_househxs as $eid=>$em)
- {
- if($eid < $toptype+1 || $eid > $toptype+499) continue;
- if($eid == $househx) {
- $fields['househx'] .= " <b>{$em}</b>";
- }
- else {
- $fields['househx'] .= " <a href=’{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&househx={$eid}&nativeplace={$nativeplace}’>{$em}</a>";
- }
- }
- */
换成
- foreach($em_househxs as $eid=>$em)
- {
- if($eid % 500 != 0) continue;
- if(isset($_GET['househx']))
- {
- $navclass=$_GET['househx'];
- if ($navclass==$eid)
- {
- $navclass=’ style=color:#ff0000′;
- }
- $fields['househx'] .= " <a href=’{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&househx={$eid}&nativeplace={$nativeplace}’".$navclass.">{$em}</a>";
- }
- }
仅供大家学习参考,希望对大家有帮助
相关DedeCms教程:
- 织梦Cms防黑客攻击必须要做的几件事!
- 织梦DedeCMS模板及系统程序编码转换的方法
- 织梦dedecms如何让内容页显示不同的内容,但是每次更新都不变
- 织梦DedeCMS网站服务器搬家详细教程
- 织梦dedecms列表页标题显示分页的页数,有利于seo优化
- Dedecms列表页标签list/pagelist使用方法及pagelist的样式
- 织梦DedeCMS如何让文章列表实现“隔行换色”
- 修改织梦dedecms的Artlist标签去掉table
- DEDECMS打开网站后台系统首页卡解决方法
- 织梦DEDECMS网站内容页、栏目页获取当前顶级栏目名称标签
- Dedecms实现键盘方向键翻页效果教程
- DEDECMS附件按月保存,修改DEDE附件不按天保存