帖子列表调用简介和图片的代码分享---phpwind9.0
主要作用:在thread 也就是帖子列表调用出该贴的简介和图片涉及文件:thread_run.htmwidget_thread.htm
phpwind9.0列表页调用图片和简介的最新方法
在thread_run.htm找到
<!--# if ($threaddb) { #-->
在下面添加<!--#
$threadtids = array();
foreach ($threaddb as $value) {
$threadtids[] = $value['tid'];
}
#-->
<component class='SRV:forum.PwThread' method='fetchThread' args='$threadtids,2'/>
<!--# $threadContent = $__tpl_data; #-->
<component class='SRV:attach.PwThreadAttach' method='fetchAttachByTidsAndPid' args='$threadtids' />
<!--#
$threadthumb = array();
foreach ($__tpl_data as $value) {
if ($value['ifthumb']) $threadthumb[$value['tid']][] = $value['path'];
}
#-->在widget_thread.htm内需要调用的位置添加代码<!--# if (is_array($threadthumb[$value['tid']])){ #-->
<div class="fl mr10" style="padding-top:3px;">
<!--#
foreach ($threadthumb[$value['tid']] as $k=>$thumb) {if(1 == $k)break;
#-->
<img src="{@Pw::getPath($thumb,2)}" width="80" align="top" />
<!--# } #-->
</div>
<!--# } #-->
页:
[1]