갤러리 게시판에서도 첨부파일에 이미지를 올리는 방법을 사용합니다^^
첨부된 이미지를 본문에 보여줍니다.
썸네일은 1개만 등록이 가능한 구조라서 첨부파일쪽에 이미지를 등록해주세요.
스킨의 editor.php 파일에서 아래 key 값을 수정해서 계속해서 늘리시면 가능합니다.
<div class="kboard-attr-row">
<label class="attr-name"><?php echo __('Attachment', 'kboard')?></label>
<div class="attr-value">
<?php if(isset($content->attach->key)):?><?php echo $content->attach->key[1]?> - <a href="<?php echo $url->getDeleteURLWithAttach($content->uid, 'key');?>" onclick="return confirm('<?php echo __('Are you sure you want to delete?', 'kboard')?>');"><?php echo __('Delete file', 'kboard')?></a><?php endif?>
<input type="file" name="kboard_attach_key">
</div>
</div>
그리고 아래 링크를 참고하시면 도움이 되실겁니다^^