欢迎光临
我们一直在努力

帖子列表页获取封面图片_discuz二次开发教程

建站超值云服务器,限时71元/月
  1.  
  2. source/module/forum/forum_forumdisplay.php
  3.  

,

  1.  
  2. if($thread[‘rushreply’]) {
  3.         $rushtids[$thread[‘tid’]] = $thread[‘tid’];
  4. }
  5.  

,

  1.  
  2.         $threada= C::t(‘forum_attachment’)->fetch_all_by_id(‘tid’, $thread[‘tid’], ‘aid’);
  3.         $threadaid = reset($threada);
  4.         $threadpic = C::t(‘forum_attachment_n’)->fetch_by_aid_uid($threadaid[‘tableid’], $threadaid[‘aid’], $thread[‘authorid’]);
  5.         $thread[‘pic’] = $threadpic[‘attachment’];
  6.  

,

  1. $thread[‘pic’]

,

  1.  
  2. source/class/table/table_forum_announcement.php
  3.  

,

  1.  
  2. $orderby = ‘ORDER BY ‘.DB::order($orderby, ‘DESC’);
  3.  

,

  1.  
  2. $orderby = ‘ORDER BY ‘.DB::order($orderby, ‘ASC’);
  3.  

,找到文件

  1.  
  2. source/module/forum/forum_forumdisplay.php
  3.  


大于809行找到如下代码

  1.  
  2. if($thread[‘rushreply’]) {
  3.         $rushtids[$thread[‘tid’]] = $thread[‘tid’];
  4. }
  5.  


在这段代码下面添加如下代码:

  1.  
  2.         $threada= C::t(‘forum_attachment’)->fetch_all_by_id(‘tid’, $thread[‘tid’], ‘aid’);
  3.         $threadaid = reset($threada);
  4.         $threadpic = C::t(‘forum_attachment_n’)->fetch_by_aid_uid($threadaid[‘tableid’], $threadaid[‘aid’], $thread[‘authorid’]);
  5.         $thread[‘pic’] = $threadpic[‘attachment’];
  6.  

这样就可以在列表页模板中使用

  1. $thread[‘pic’]


来加载一张封面图片,但是需要注意这样是加载最后一张插入的图片!


如果要改为第一张图片还需要修改另外的一个文件

找到文件

  1.  
  2. source/class/table/table_forum_announcement.php
  3.  


找到

  1.  
  2. $orderby = ‘ORDER BY ‘.DB::order($orderby, ‘DESC’);
  3.  


修改为:

  1.  
  2. $orderby = ‘ORDER BY ‘.DB::order($orderby, ‘ASC’);
  3.  


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

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 帖子列表页获取封面图片_discuz二次开发教程
分享到: 更多 (0)