모바일게시판 리스트썸네일 파일첨부2번째 등록한 이미지를 썸네일로 출력
본문
게시판에서 게시글 작성시
파일첨부 2개를 썸네일로 디바이스에 따라 다른 사이즈의 이미지를 출력시키려하는데요;;
파일첨부1 => pc 리스트에서 뜰 썸네일
이건 파일첨부 첫번째에 이미지를 등록하면 자동으로 썸네일로 추출해줘서 문제가 안되는데
파일첨부2 => 모바일 리스트에서 띄우고 싶은 썸네일
이게 걸리네요;;
모바일 게시판에서는 파일첨부2번째에 등록된 이미지를 썸네일로 사용하려면 어떻게 해야하나요...??
혹시 참고할만한 글이 있나요?? 찾아봤는데 제 검색능력의 한계인지... 원하는 글을 찾지 못해 질문올려봅니다ㅠㅠㅠ
답변 1
thumbnail.lib.php
에서
get_list_thumbnail 함수를 사용한다면
$sql = " select bf_file, bf_content from {$g5['board_file_table']}
where bo_table = '$bo_table' and wr_id = '$wr_id' and bf_type between '1' and '3' order by bf_no limit 0, 1 ";
$row = sql_fetch($sql);
=> 이부분을 아래와 같이 바꿔주시면 됩니다.
if (G5_IS_MOBILE) {
// 모바일일경우 2번째 이미지를 불러들임
$sql = " select bf_file, bf_content from {$g5['board_file_table']}
where bo_table = '$bo_table' and wr_id = '$wr_id' and bf_type between '1' and '3' and order by bf_no limit 1, 1 ";
$row = sql_fetch($sql);
} else {
$sql = " select bf_file, bf_content from {$g5['board_file_table']}
where bo_table = '$bo_table' and wr_id = '$wr_id' and bf_type between '1' and '3' order by bf_no limit 0, 1 ";
$row = sql_fetch($sql);
}