adm/index.php 에서 최근게시물에 댓글을 빼려면 ?
본문
adm/index.php 보면
최근게시물있잖아요
여기에서 모든 게시판에 쓴글과 댓글이 모두 불러지는데
게시글만 불러오고 댓글은 빼고싶어요
어떻게하죠?
도움을 부탁드립니다.
답변 3
제 adm/index.php 파일 131 라인은
$sql_common = " from {$g5['board_new_table']} a, {$g5['board_table']} b, {$g5['group_table']} c where a.bo_table = b.bo_table and b.gr_id = c.gr_id ";
입니다.
그 아래와 if($gr_id) 사이에
$view = 'w';
를 넣어보세요.
!-->!-->그 최신글 스킨 들어가서 제거 하면될거같아요 스킨 들어가자마자 보여요 어느부분이 댓글부분인지
참고 https://gnustudy.com/bbs/board.php?bo_table=gnu_tip&wr_id=328
adm/index.php 파일에서
if (isset($view) && $view) {
if ($view == 'w')
$sql_common .= " and a.wr_id = a.wr_parent ";
else if ($view == 'c')
$sql_common .= " and a.wr_id <> a.wr_parent ";
}
위 코드는 사용되지 않으니 삭제하거나 주석 처리 후에 이렇게 추가하세요.
$sql_common .= " and a.wr_id = a.wr_parent ";
답변을 작성하시기 전에 로그인 해주세요.