Home  >  Article  >  php教程  >  DedeCMS栏目列表去除推荐文章标题加粗样式

DedeCMS栏目列表去除推荐文章标题加粗样式

WBOY
WBOYOriginal
2016-06-06 20:11:331144browse

使用DedeCMS的同学肯定是经常使用DedeCMS的推荐位,不过官方默认的推荐位C会在文章标题外面包一层b标题/b.DedeCMS官方的做法也没错,但是很多时候页面上设计的效果会被打乱,不能达到自定义的效果。新一分享一下DedeCMS栏目列表推荐文章加粗效果去除方法 去

使用DedeCMS的同学肯定是经常使用DedeCMS的推荐位,不过官方默认的推荐位C会在文章标题外面包一层标题.DedeCMS官方的做法也没错,但是很多时候页面上设计的效果会被打乱,不能达到自定义的效果。新一分享一下DedeCMS栏目列表推荐文章加粗效果去除方法

去除文章标题加粗效果方法需要修改PHP源文件代码

路径:/include/arc.listview.class.php 第878行

原来

if(preg_match('/c/', $row['flag']))
{
$row['title'] = "".$row['title']."";
}

修改

//if(preg_match('/c/', $row['flag']))
//{
// $row['title'] = "".$row['title']."";
//}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn