本帖最后由 dlsite 于 2023-8-15 00:52 编辑
依次打开 www/source/module/forum/ ,编辑 forum_forumdisplay.php 文件
搜索代码 foreach($threadlist as$thread) {
在其下方添加 $thread['subject'] = cutstr($thread['subject'],20, $dot = '...');
实例:
foreach($threadlist as $thread) {
$thread['subject'] = cutstr($thread['subject'],20, $dot = '...');
说明:代码中的数字20是截取字符长度,根据自己的需求调整大小。
|