最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

discuz!怎样实现正题列表页显示帖子正文摘要?非预览功能

来源:http://erdangjiade.com/topic/79807.html 你好,世界。 2017-10-04 21:03浏览(0)

discuz!怎样实现主题列表页显示帖子正文摘要?非预览功能。
如下图那样显示对应的主题的正文前200字。但对应的模版文件里好像没有“内容”的变量啊,求教


------解决方案--------------------

重点看红色区域的代码,应该会对你有用,这个是直接获得该文章的内容,
------解决方案--------------------
不建议在模版文件中执行查询
打开后台文件sourcemoduleforumforum_forumdisplay.php

//搜索foreach($threadlist as $thread) {
//在其上面添加
foreach($threadlist as $v){
$tids[]=$v['tid'];
}
$strtids=join(',',$tids);
$msginfos=DB::fetch_all("SELECT tid,message FROM %t WHERE tid IN($strtids)",array('forum_post'));
if(!function_exists('messagecutstr')){
require_once libfile('function/post');
}
foreach($msginfos as $v){
$cutmsginfos[$v['tid']]=messagecutstr($v['message'],200);
}
//在其下面添加
$thread['cutmsg']=$cutmsginfos[$thread['tid']];

前台用$thread['cutmsg']就可以获取
打开模版文件templatedefaultforumforumdisplay_list.htm

<!--230行左右,</tbody>上面添加-->
<tr>
<td colspan="6">$thread['cutmsg']</td>
</tr>


样子如上图所示,样式自己调

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2