안녕하세요?
아래 게시판그림과 같이 첨부파일 위치에 "첨부파일"이라고 칸 이름이 달리게 하고 싶은데 아무리 찾아봐도 없네요.
어떻게 하면 될까요? default스킨입니다.
https://drive.google.com/file/d/1M-S2Iq5aGyzutSK4k-Ff_OgfFdy-U0bR/view?usp=sharing
안녕하세요~^^
KBoard 플러그인 Default 게시판 스킨 게시글 본문 페이지에서 첨부파일은
FTP로 접속해서 /wp-content/plugins/kboard/skin/사용중인스킨/document.php 파일에
아래의 코드에서 표시하고 있습니다.
<?php if($content->isAttached()):?>
<div class="kboard-attach">
<?php foreach($content->getAttachmentList() as $key=>$attach):?>
<button type="button" class="kboard-button-action kboard-button-download" onclick="window.location.href='<?php echo $url->getDownloadURLWithAttach($content->uid, $key)?>'" title="<?php echo sprintf(__('Download %s', 'kboard'), $attach[1])?>"><?php echo $attach[1]?></button>
<?php endforeach?>
</div>
<?php endif?>
파일명 앞에 첨부파일 문구를 표시하고 싶으신다면
아래의 코드로 교체해보시겠어요?
<?php if($content->isAttached()):?>
<div class="kboard-attach">
<?php foreach($content->getAttachmentList() as $key=>$attach):?>
첨부파일 <button type="button" class="kboard-button-action kboard-button-download" onclick="window.location.href='<?php echo $url->getDownloadURLWithAttach($content->uid, $key)?>'" title="<?php echo sprintf(__('Download %s', 'kboard'), $attach[1])?>"><?php echo $attach[1]?></button>
<?php endforeach?>
</div>
<?php endif?>
고맙습니다.