테마 : Enfold
하나보드 한글파일 업로드 허용
/* User Add Uploads */ define('ALLOW_UNFILTERED_UPLOADS', true );
function add_custom_mime_types($mimes){ return array_merge($mimes,array ( 'hwp' => 'application/hangul' )); } add_filter('upload_mimes','add_custom_mime_types');
첨부파일 링크 수정
다운로드 후 페이지 리도드 멈춤현상 : 55번 라인 _blank 추가
<li> <a href="<?php echo $file->url;?>" target="_blank" title="<?php echo esc_attr( $file->title );?>"> <span class="attachment-filename"> <?php echo $file->title; ?> </span> <span class="attachment-filesize"> <?php echo ( empty($file->filesize) ? "" : "(".$file->filesize.")" ) ?> </span> </a> </li>