欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

discuz 帖子列表页调用封面图片代码

时间: 2019-05-24 11:57 阅读: 作者:素材无忧网

打开文件: source/module/forum/forum_forumdisplay.php 找到如下代码 if($thread['rushreply']) {         $rushtids[$thread['tid']] = $thread['tid']; } 复制代码 在这段代码下面添加如下代码:
$threada= C::t('forum_attachment')->fetch_all_by_id('tid', $thread['tid'], 'aid');
$threadaid = reset($threada);
$threadpic = C::t('forum_attachment_n')->fetch_by_aid_uid($threadaid['tableid'], $threadaid['aid'], $thread['authorid']);
$thread['pic'] = $threadpic['attachment'];

这样就可以在列表页模板中使用 $thread['pic'] $thread['pic']所调用的是“附件”不分格式,也就是说,有可能调用到.rar/.zip之类的附件,并不是专调图片,算是个弊端。

版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: discuz 帖子列表页调用封面图片代码

标签:  
相关文章
模板推荐