您现在的位置是:首页 > 教程 > dedecms教程dedecms教程

dedecms织梦当前位置去掉>符号为链接添加样式的方法

妙菡2023-11-18 22:24:30dedecms教程已有人查阅

导读dedecms当前位置去掉>符号并为链接添加样式的方法如下:1.在系统〉基本参数〉核心设置 〉栏目位置的间隔符号 删除>符号2.修改include>typelink.class.php

dedecms当前位置去掉>符号并为链接添加样式的方法如下:
1.在系统〉基本参数〉核心设置 〉栏目位置的间隔符号 删除>符号
2.修改include>typelink.class.php
找到
$indexpage = "<a href=’".$this->indexUrl."’>".$this->indexName."</a>";此处为首页链接 修改方法如:$indexpage = "<a href=’".$this->indexUrl."’ class=’home’>".$this->indexName."</a>";
找到
$typelink = "<a href=’".$typepage."’>".$typeinfos['typename']."</a>";此处为栏目链接 修改方法如:$typelink = "<a href=’".$typepage."’ class=’current’>".$typeinfos['typename']."</a>";
生成后得到的信息为
<a href="/" class="home">主页</a><a href="/News/" class="current">News</a><a href="/News/guonaxinwen/" class="current">国内新闻</a> 
改源码得胆大心细 修改时较好将源文件备份一下

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签