안녕하세요. 워드프레스 KBoard 게시판 사용하고 있는 유저입니다.
http://www.ckpc.co.kr/html/02_info/info_01.php 제목을 클릭했을시 게시판 내용이 보이지않고
이렇게 리스트에서 첨부파일을 다운로드할 수 있게 만드려는데 지원이 가능한지 문의드립니다.
고생하세요~
안녕하세요 ㅎㅎ
아래 스킨을 사용하시면 별도 수정 없이 가능합니다.
KBoard 다운로드 스킨
http://www.cosmosfarm.com/wpstore/product/kboard-download-skin
KBoard 다운로드 스킨을 사용하지 않고 다른 스킨에서 원하시는 것처럼 하시려면
스킨을 직접 수정하셔야 할 듯합니다.
참고로 다운로드 스킨에는 아래의 코드가 list.php 파일에 적용되어 있습니다.
<td class="kboard-list-download">
<?php if(isset($content->attach->file1) && $content->attach->file1[0]):?><a href="<?php echo add_query_arg(array('redirect_to'=>urlencode($url->set('uid', $content->uid)->set('mod', 'document')->toString())), $url->getDownloadURLWithAttach($content->uid, 'file1'))?>" title="<?php echo sprintf(__('Download %s', 'kboard'), $content->attach->file1[1])?>"><i class="icon-cloud-download"></i> <?php echo __('Download', 'kboard')?></a><?php endif?>
<?php if(isset($content->attach->file2) && $content->attach->file2[0]):?><a href="<?php echo add_query_arg(array('redirect_to'=>urlencode($url->set('uid', $content->uid)->set('mod', 'document')->toString())), $url->getDownloadURLWithAttach($content->uid, 'file2'))?>" title="<?php echo sprintf(__('Download %s', 'kboard'), $content->attach->file2[1])?>"><i class="icon-cloud-download"></i> <?php echo __('Download', 'kboard')?></a><?php endif?>
</td>
고맙습니다.