找到文件
  1. source/module/forum/forum_forumdisplay.php

大于809行找到如下代码
  1. if($thread['rushreply']) {
  2. $rushtids[$thread['tid']] = $thread['tid'];
  3. }

在这段代码下面增加如下代码:
  1. $threada= C::t('forum_attachment')->fetch_all_by_id('tid', $thread['tid'], 'aid');
  2. $threadaid = reset($threada);
  3. $threadpic = C::t('forum_attachment_n')->fetch_by_aid_uid($threadaid['tableid'], $threadaid['aid'], $thread['authorid']);
  4. $thread['pic'] = $threadpic['attachment'];


这样就可以在列表页模板中运用
  1. $thread['pic']

来加载一张封面图片,可是需求留意这样是加载最终一张刺进的图片!
假如要改为第一张图片还需求修正别的的一个文件

找到文件
  1. source/class/table/table_forum_announcement.php

找到
  1. $orderby = 'ORDER BY '.DB::order($orderby, 'DESC');

修正为:
  1. $orderby = 'ORDER BY '.DB::order($orderby, 'ASC');



好了这样就可在列表页,加载发帖时上传的第一张图片,做为封面来调用了!

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:帖子列表页获取封面图片_discuz二次开发教程发布于2023-03-02 15:39:29

相关推荐