어떻게 하나요?
출력하는 방법이있나요?
스킨 파일을 에디터로 수정해주셔야 합니다.
스킨의 list.php 파일을 보시면 <?php while($content = $list->hasNextNotice()):?> 부분이 따로 있습니다.
latest.php 파일에도 공지사항을 출력하게 추가해줘야 합니다.
예제는 아래와 같습니다.
<?php while($content = $list->hasNextNotice()):?>
<tr>
<td class="kboard-latest-title"><div class="cut_strings"><a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>"><?php echo $content->title?></a> <?php echo $content->getCommentsCount()?></div></td>
<td class="kboard-latest-date"><?php echo date("Y.m.d", strtotime($content->date))?></td>
</tr>
<?php endwhile?>