小小百科网

标题: 让帖子内URL不缩略显示的修改方法 [打印本页]

作者: xiaoxiao    时间: 2014-10-27 11:22
标题: 让帖子内URL不缩略显示的修改方法
本帖最后由 xiaoxiao 于 2015-1-7 15:45 编辑

编辑source/function/function_discuzcode.php

  1.                 $length = 65;

  2.                 if(strlen($url) > $length) {

  3.                         $text = substr($url, 0, intval($length * 0.5)).' ... '.substr($url, - intval($length * 0.3));

  4.                 }
复制代码


两个解决完善方案:
1、删除上述代码即可 往后将不再缩略任何长度的URL
2、如果考虑到过长的URL影响阅读 仅修改65这个URL字数限制即可,比如调整为100。

修改前前备份好文件,如果修改出现问题,可以直接使用备份覆盖。





欢迎光临 小小百科网 (http://www.aixiaoxiao.cn/) Powered by Discuz! X3.3