欢迎光临
我们一直在努力

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

建站超值云服务器,限时71元/月

打开文件:,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之类的附件,并不是专调图片,算是个弊端。,打开文件: 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之类的附件,并不是专调图片,算是个弊端。

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