latest()에서 $list[$i]에 코멘트 추가하기
기존 latest 스킨에서 다음 변수
$list[ $i]['comment_str']
를 사용하시면 됩니다.
주의: 테스트 안 된 상태, 답변글이 있는 경우 고려하지 않음
코멘트 길이는 제목 길이와 같음
<?
if (!defined('_GNUBOARD_')) exit;
// 최신글 추출
function latest_wic($skin_dir="", $bo_table, $rows=10, $subject_len=40, $options="")
{
global $g4;
if ($skin_dir)
$latest_skin_path = "$g4[path]/skin/latest/$skin_dir";
else
$latest_skin_path = "$g4[path]/skin/latest/basic";
$list = array();
$sql = " select * from $g4[board_table] where bo_table = '$bo_table'";
$board = sql_fetch($sql);
$tmp_write_table = $g4['write_prefix'] . $bo_table; // 게시판 테이블 전체이름
//$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_id desc limit 0, $rows ";
// 위의 코드 보다 속도가 빠름
$sql = " select B.wr_id, B.wr_num, B.wr_is_comment, B.wr_subject, ifnull( wr_content, '') cmmt, C.wr_id, C.wr_parent from $tmp_write_table B left join $tmp_write_table C on B.wr_is_comment=0 and B.wr_id=C.wr_parent and C.wr_is_comment=1 where B.wr_is_comment=0 and B.wr_id>0 order by B.wr_num, C.wr_comment; limit 0, $rows ";
//explain($sql);
$result = sql_query($sql);
$this=0;
for ($i=0; $row = sql_fetch_array($result); $i++)
if( $this == $row['wr_num']) { $this= $row['wr_num']; $list[ $i]['comment_str'].= cut_str( $row['cmmt'], $subject_len).', '; continue; }
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);
ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();
return $content;
}
?>
~
댓글 2개
게시판 목록
그누4 팁자료실
나누면 즐거움이 커집니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 3309 | 3년 전 | 1808 | ||
| 3308 | 11년 전 | 2094 | ||
| 3307 |
uPAmJ903
|
6년 전 | 4754 | |
| 3306 |
바른사나이
|
6년 전 | 3275 | |
| 3305 | 6년 전 | 12313 | ||
| 3304 | 7년 전 | 3706 | ||
| 3303 | 7년 전 | 3746 | ||
| 3302 |
지리산초보
|
7년 전 | 13598 | |
| 3301 |
sozet
|
8년 전 | 4906 | |
| 3300 |
sozet
|
8년 전 | 5975 | |
| 3299 |
sozet
|
8년 전 | 10864 | |
| 3298 | 8년 전 | 4018 | ||
| 3297 |
또치하우스
|
8년 전 | 4447 | |
| 3296 | 8년 전 | 11975 | ||
| 3295 |
또치하우스
|
8년 전 | 14989 | |
| 3294 | 8년 전 | 6031 | ||
| 3293 | 8년 전 | 5595 | ||
| 3292 |
|
9년 전 | 5324 | |
| 3291 | 9년 전 | 13684 | ||
| 3290 | 9년 전 | 5056 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기