class="area">
主要作用:在thread 也就是帖子列表調用出該貼的簡介和圖片
涉及文件:thread_run.htm widget_thread.htm
首先,用文檔編輯器打開 thread_run.htm
找到<!--# if ($threadList) { #-->
在下面加上
<!--#
$threadtids = array();
foreach ($threadList as $value) {
$threadtids[] = $value['tid'];
}
#-->
<component class='SRV:forum.PwThread' method='fetchThread' args='$threadtids,2'/>
<!--# $threadContent = $__tpl_data; #-->
<component class='SRV:attach.PwThreadAttach' method='fetchAttach' args='$threadtids' />
<!--# $threadthumb = $__tpl_data; #-->
打開 widget_thread.htm 在 <p class="info">上面加上
<p class="mb5">
{@Pw::substrs(Pw::stripWindCode($threadContent[$value['tid']]['content'],true),120)}
<!--# if ($threadthumb[$value['tid']]['path']['ifthumb']){ #-->
<div><img src="{@Pw::getPath($threadthumb[$value['tid']]['path'],2)}" /></div>
<!--# } #-->
</p>
其中
{@Pw::substrs(Pw::stripWindCode($threadContent[$value['tid']]['content'],true),120)}是簡介,120是字數 {@Pw::getPath($threadthumb[$value['tid']]['path'],2)} 是調用圖片縮略圖,把2改成1就會變成大圖,0應該就是原圖了