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

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

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

使用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']."";
//}
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn