답변 1개 / 댓글 1개
채택된 답변
+20 포인트
eyekiss
2019-04-22 (월) 18:00:50
/bbs/list.php 87줄에 공지처리 부분을 활용해야 합니다.
114줄에 아래 소스를 추가해보세요.
Copy
$sql = " select * from {$write_table} where wr_4 >= '시작일' and wr_4 <= '종료일' order by rand() ";
$result = sql_query($sql);
for ($k=0; $row = sql_fetch_array($result); $k++) {
if (!$row['wr_id']) continue;
$notice_array[] = $row['wr_id'];
if($k < $from_notice_idx) continue;
$list[$i] = get_list($row, $board, $board_skin_url, G5_IS_MOBILE ? $board['bo_mobile_subject_len'] : $board['bo_subject_len']);
$list[$i]['is_notice'] = true;
$i++;
$notice_count++;
if($notice_count >= $list_page_rows)
break;
}
답변에 대한 댓글 1개
2019-04-22 (월) 18:53:01
답변을 작성하려면 로그인이 필요합니다.
감사합니다!!