Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-06 20:11:33
Original
1138 people have browsed it

使用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']."";
}
Copy after login

修改

//if(preg_match('/c/', $row['flag']))
//{
// $row['title'] = "".$row['title']."";
//}
Copy after login
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!