2026, 새로운 도약을 시작합니다.

최신글 썸네일 채택완료

최신글에서 썸네일을 뽑을때 에디터상에 올린 이미지 첫번째것을 뽑잖아요.

두번째것을 뽑을수도 있는가요? 

답변 2개

채택된 답변
+20 포인트

/lib/thumbnail.lib.php 중 get_list_thumbnail() 을 다음과 같이 수정해보세요.

테스트를 거치지는 않았습니다. 

Copy

// 게시글리스트 썸네일 생성
function get_list_thumbnail($bo_table, $wr_id, $thumb_width, $thumb_height, $is_create=false, $is_crop=true, $crop_mode='center', $is_sharpen=true, $um_value='80/0.5/3')
{
    global $g5, $config;
    $filename = $alt = "";
    $edt = false;

    $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($row['bf_file']) {
        $filename = $row['bf_file'];
        $filepath = G5_DATA_PATH.'/file/'.$bo_table;
        $alt = get_text($row['bf_content']);
    } else {
        $write_table = $g5['write_prefix'].$bo_table;
        $sql = " select wr_content from $write_table where wr_id = '$wr_id' ";
        $write = sql_fetch($sql);
        $matches = get_editor_image($write['wr_content'], false);
        $edt = true;
        $j=0;
        for($i=0; $i$src, "alt"=>$alt);

    return $thumb;
}
 
로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

파일 첨부로 넣은 이미지는 선택해서 적용이 가능한데 썸네일은 좀 힘들지 않을까요.

http://sir.co.kr/g5_tip/2410 

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고