그누보드5 전체게시물에서 특정게시판 제외하기
본문
게시판 관리자에서 전체검색출력여부와 상관없이 이용하는 방법입니다.
bbs/new.php 파일내 16번째줄 아래문구를
$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 and b.bo_use_search = 1 ";
아래와 같이 하세요.
예제
$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 and b.bo_use_search = 1
and a.bo_table != 'car_info'
and a.bo_table != 'car_price'
and a.bo_table != 'sell_car'
and a.bo_table != 'chulsuk'
and a.bo_table != 'food'
and a.bo_table != 'hanfree'
and a.bo_table != 'insa'
and a.bo_table != 'photo'
and a.bo_table != 'san_photo'
and a.bo_table != 'notice'
and a.bo_table != 'qa'
and a.bo_table != 'tipinfo'
and a.bo_table != 'app'
and a.bo_table != 'hoogi'
and a.bo_table != 'sell'
and a.bo_table != 'buup'
and a.bo_table != 'dome'
and a.bo_table != 'free'
and a.bo_table != 'FreeDealer'
and a.bo_table != 'market'
and a.bo_table != 'market_digital'
and a.bo_table != 'market_el'
and a.bo_table != 'market_life'
and a.bo_table != 'market_pc'
and a.bo_table != 'Merchant'
and a.bo_table != 'positions'
and a.bo_table != 'powerblog'
and a.bo_table != 'Salesman'
and a.bo_table != 'sellbuymall'
and a.bo_table != 'sell_insa'
and a.bo_table != 'sell_junggo'
and a.bo_table != 'shopforum'
";
여기서 and a.bo_table != 'gb_d' 이것중 'gb_d' 은 게시판 테이블명입니다.
제외할 게시판을 추가하시면 됩니다.
and a.bo_table != '게시판테이블명1'
and a.bo_table != '게시판테이블명2'
and a.bo_table != '게시판테이블명3'
and a.bo_table != '게시판테이블명4'
and a.bo_table != '게시판테이블명5'
and a.bo_table != '게시판테이블명6'
최신글이 없습니다.
최신글이 없습니다.
댓글목록0