如果要修改齐博CMS整站系统内容页面中关键词的链接样式及重复显示个数,需要打开inc/artic_function.php 页面,按如下代码进行修改:
1:内容中加链接的关键词的链接样式:(默认凸出显示)
找到$replace[]=”<a href=$value style=text-decoration:underline;font-size:14px;color:{$webdb[ShowKeywordColor]}; target=_blank>$key</a>”;
修改为:$replace[]=”<a href=$value style=text-decoration: none;color: #333333; target=_blank>$key</a>”;
2:内容中加链接的关键词重复显示个数(默认加链接的关键词重复显示的个数2个)
找到 $search && $content=str_replace_limit($search,$replace,$content,2);
修改为:$search && $content=str_replace_limit($search,$replace,$content,1);
- 本文固定链接: https://www.liangxin.name/sitebuild/qibo/2016/10/21/?p=41.html
- 转载请注明: xindao 于 心岛博客 发表