안녕하세요
글 작성권한은 관리자만 쓸수있게 가능하지만
댓글작성시 댓글에도 파일첨부 필드가 나오는데요
이걸 관리자만 업로드 가능하게 필드가 안보이게 할수는 없나요?
안녕하세요~^^
댓글의 파일 첨부를 관리자일 때만 출력하게 하시려면
wp-content/plugins/kboard-comments/skin/사용중인 스킨/list.php 파일 중
아래 코드를 찾아서
<div class="comments-field field-file1">
<label class="comments-field-label" for="comment_file1_<?php echo $content_uid?>"><?php echo __('Attachment', 'kboard-comments')?></label>
<input type="file" id="comment_file1_<?php echo $content_uid?>" name="comment_attach_file1">
</div>
아래 코드로 변경해보시겠어요?
<?php if(is_super_admin()):?>
<div class="comments-field field-file1">
<label class="comments-field-label" for="comment_file1_<?php echo $content_uid?>"><?php echo __('Attachment', 'kboard-comments')?></label>
<input type="file" id="comment_file1_<?php echo $content_uid?>" name="comment_attach_file1">
</div>
<?php endif?>
고맙습니다.