최신글에서 쎔네일 사진 출력을 원본사진 출력 하려합니다
본문
최신글에서 쎔네일 사진 출력을 원본사진 출력 하려합니다
<?php
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $thumb_width, $thumb_height, false, true);
if($thumb['src']) {
$img = $thumb['src'];
} else {
$img = G5_IMG_URL.'/no_img.png';
}
$img_content = '<img src="'.$img.'" alt="'.$thumb['alt'].'" width="330" height="100%">';
?>
답변 1
참고..
http://gnustudy.com/bbs/board.php?bo_table=skin_latest&wr_id=36
$img = $thumb['src'];
여기를 이렇게 수정
$img = $thumb['ori'];
답변을 작성하시기 전에 로그인 해주세요.