댓글 역순 출력 질문좀할게요.
본문
적용해본 원 게시물의 링크입니다.
https://gnustudy.com/bbs/board.php?bo_table=skin_board&wr_id=193
bbs/view_connent.php 에 23라인의
$sql = " select * from $write_table where wr_parent = '$wr_id' and wr_is_comment = 1 order by wr_comment, wr_comment_reply ";
를
$sql = " select * from $write_table where wr_parent = '$wr_id' and wr_is_comment = 1 order by wr_comment desc, wr_comment_reply ";
로 수정하고...
특정 게시판에만 적용을 하고 싶기에...
if ($bo_table == 'board_test') {
$sql = " select * from $write_table where wr_parent = '$wr_id' and wr_is_comment = 1 order by wr_comment desc, wr_comment_reply ";
} else {
$sql = " select * from $write_table where wr_parent = '$wr_id' and wr_is_comment = 1 order by wr_comment, wr_comment_reply ";
}
로 해보았는데... board_test 게시판에서 댓글 역순출력이 되지 않네요.
오래전 글이라 적용이 안되는건지 다른 방법이 있으면 알려주시면 감사하겠습니다.
답변 2
최근 그누보드 원본 기준으로 직접 해봤는데 가장 최근에 등록된 댓글순으로 정상적으로 정렬됩니다.
적용 전(기본상태) : 마지막에 작성한 댓글이 제일 아래로..
적용 후 : 마지막에 작성한 댓글이 제일 위로..