워드프레스 게시판 KBoard에
처음엔 됐던거 같은데 지금보니 리스트에 항목 추가한 것이 반영이 안되네요.,
뭐가 잘못된 걸까요?
<!-- 리스트 시작 -->
<div class="kboard-list">
<table>
<thead>
<tr>
</tr>
</thead>
<tbody>
<?php while($content = $list->hasNextNotice()):?>
<tr class="kboard-list-notice">
</tr>
<?php endwhile?>
<?php while($content = $list->hasNext()):?>
<tr>
<td class="kboard-list-thumbnail"><?php if($content->getThumbnail(240, 160)):?><img src="<?php echo $content->getThumbnail(240, 160)?>" style="max-width:100%;" alt=""><?php else:?><i class="icon-picture"></i><?php endif?></td>
<td class="kboard-list-title"><div class="cut_strings">
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>" >
<strong>[<?php echo $content->title?>]</strong><br>
저자 : <?php echo isset($content->option->author)?$content->option->author:''?><br>
출판사 : <?php echo isset($content->option->print)?$content->option->print:''?><br>
주제어 : <?php echo isset($content->option->topic)?$content->option->topic:''?><br>
</a>
<td><div class="content-view"><a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>"><?php echo mb_strimwidth(strip_tags($content->content), 0, 60, '...', 'utf-8')?></a></div></td>
</div></td>
</tr>
<?php $boardBuilder->builderReply($content->uid)?>
<?php endwhile?>
</tbody>
</table>
</div>
<!-- 리스트 끝 -->
간단한거면 미안합니다.ㅜㅜ