帝国cms万能标签标题截取后自动加入省略号的方法

  • A+
所属分类:帝国cms技巧

内容摘要

帝国CMS万能标签标题截取后自动加入省略号,没有达到字数的则不加省略号完美解决方案1.打开e/class/connect.php 搜索 if(!empty($subtitle))//截取字符 大约在2224行 在下面

文章正文

帝国CMS万能标签标题截取后自动加入省略号,没有达到字数的则不加省略号完美解决方案

1.打开e/class/connect.php 搜索 if(!empty($subtitle))//截取字符 大约在2224行 在下面加入代码 

f($r[title] != $r[oldtitle]) {   $value=sub($value,0,$subtitle,false,'...');  }

修改后代码如下:
if(!empty($subtitle))//截取字符 
{     if($r[title] != $r[oldtitle])    {     $value=sub($value,0,$subtitle,false,'...');   }  }

2.打开e/class/t_functions.php 搜索$r[oldtitle]=$r[title]; 
大约在638行 在$r[oldtitle]=$r[title];下面加$r[title]=sub($r[title],0,$strlen,false); 代码如下:

while($r=$empire->fetch($sql))         
   {   $r[oldtitle]=$r[title]; //修改 $r[title]=sub($r[title],0,$strlen,false);

代码注释

  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: