团队出品
扫描关注网站建设微信公众账号

扫一扫微信二维码

项目介绍

dede文章摘要不限制字数方法

项目作品团队动态 > 经验之谈 >
案例标签
设计欣赏
archives_add.php 中的:$description = cn_substrR($description,$cfg_auot_description); archives_edit.php 中的: $description = cn_substrR($description,250);
这两个语句是用来定义摘要的,$cfg_auot_description是自动摘要长度的变量,250是长度的最大值
可是为什么一定要给摘要规定一个长度呢?
所以这个方法就是直接将摘要长度去掉,将代码改为:
archives_add.php  $description = $description;
archives_edit.php  $description = $description;