帖子列表页获取封面图片_discuz二次开发教程
找到文件source/module/forum/forum_forumdisplay.php
大于809行找到如下代码
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']
来加载一张封面图片,但是需要注意这样是加载最后一张插入的图片!
如果要改为第一张图片还需要修改另外的一个文件
找到文件
source/class/table/table_forum_announcement.php
找到
$orderby = 'ORDER BY '.DB::order($orderby, 'DESC');
修改为:
$orderby = 'ORDER BY '.DB::order($orderby, 'ASC');
好了这样就可在列表页,加载发帖时上传的第一张图片,做为封面来调用了!
discuz二次开发教程:帖子列表页获取封面图片 由DZ起点网原创发布,转载请注明出处!
我用的是discuz x3.2的 可是怎么没找到
$orderby = 'ORDER BY '.DB::order($orderby, 'ASC');
这行呢?我看了下x2.5里面也没有是不是写错文件了 坐等啊 希望主人能看到我的问题:(
这种格式代码如何写?
搜索吗?
8.32里面没有$orderby = 'ORDER BY '.DB::order($orderby, 'DESC');这一句啊 只显示:201608/22/120331dmgwfwchfcfa081x.jpg没有显示图片,为什么:'( 技术帮助 发表于 2016-8-12 09:58
搜索吗?
只显示各类不全的地址,如:201608/22/120331dmgwfwchfcfa081x.jpg没有显示图片,为什么 一毛 发表于 2015-12-20 18:10
我用的是discuz x3.2的 可是怎么没找到
$orderby = 'ORDER BY '.DB:rder($orderby, 'ASC');
这行呢? ...
他搜索里面只有这个 说明只搜到一个 而这句的作用是排序那这样的话可以将所有的查询有用到排序的都改了(在这个文件zhong )
页:
[1]