织梦园模板网提供云优cms模板,pbootcms模板,Wordpress主题模板等各类企业新闻资讯网站模板下载服务。织梦园网站模板交流群
用户名:
密码:
注册
注册后享受折扣价

dede织梦内容页列表页二级栏目三级栏目同时高亮方法

织梦园模板 / 2019-05-24 / 收藏
效果演示:

dede织梦内容页列表页二级栏目三级栏目同时高亮方法

 

实现教程

 

1、打开 \include\taglib\channelartlist.lib.php 找到

  $tpsql = " reid='$typeid' AND ispart<>2 AND ishidden<>1 ";

改成

if($type=='son')
{
         $typeid = ( !empty($refObj->TypeLink->TypeInfos['id']) ?  GetTopid($refObj->TypeLink->TypeInfos['id']) : 0 );
         $tpsql = " reid='$typeid' AND ishidden<>1 ";
}
else
{
         $tpsql = " reid='$typeid' AND ispart<>2 AND ishidden<>1 ";
}

2、打开 \include\taglib\channel.lib.php 找到

  if($type=='son' && $reid!=0 && $totalRow==0)


改成

  if($type=='son' && $reid!=0 && $totalRow==0 && $noself=='')

3、后台-系统-其它选项 去掉php

dede织梦内容页列表页二级栏目三级栏目同时高亮方法

列表页和内容页标签写法

<ul>
{dede:php}
$GLOBALS['thisid'] = intval($refObj->Fields['typeid']);
$GLOBALS['reid'] = intval($refObj->Fields['reid']);
$GLOBALS['topid'] = intval($refObj->Fields['topid']);
{/dede:php}
{dede:channelartlist type=son}
    <li{dede:field.typeid runphp=yes}(@me==$GLOBALS['thisid']||@me==$GLOBALS['reid']||@me==$GLOBALS['topid'])? @me=' class="current"':@me='';{/dede:field.typeid}><a href='{dede:field.typeurl/}' >{dede:field.typename/}</a></li>
    <ul>
    {dede:channel type=son noself=yes}
    <li[field:id runphp=yes](@me==$GLOBALS['thisid'])? @me=' class="current2"':@me='';[/field:id]><a href='[field:typelink /]' title='[field:typename/]'>[field:typename/]</a></li>
    {/dede:channel}
    </ul>
{/dede:channelartlist}
</ul>

注意:红色的地方是必须要的

相关织梦教程

收缩