그룹최신글 에서 전체검색 제외된 게시판은 빼기
본문
그룹 메인에 보면 아래 소스로 그룹내 모든 게시판에 대해 최신글이 뿌려집니다.
여기서 게시판설정에 "전체검색 제외" 로 되어 있는 게시판은 빼고 뿌려지게 하려면
어떻게 하면 될까요?
<!-- 메인화면 최신글 시작 -->
<?php
// 최신글
$sql = " select bo_table, bo_subject
from {$g5['board_table']}
where gr_id = '{$gr_id}'
and bo_list_level <= '{$member['mb_level']}'
and bo_device <> 'mobile' ";
if(!$is_admin)
$sql .= " and bo_use_cert = '' ";
$sql .= " order by bo_order ";
$result = sql_query($sql);
for ($i=0; $row=sql_fetch_array($result); $i++) {
$lt_style = "";
if ($i%2==1) $lt_style = "margin-left:2%";
else $lt_style = "";
?>
<div style="float:left;<?php echo $lt_style ?>" class="lt_wr">
<?php
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 사용방법 : latest(스킨, 게시판아이디, 출력라인, 글자수);
echo latest('theme/group_basic', $row['bo_table'], 0, 25);
?>
</div>
<?php
}
?>
<!-- 메인화면 최신글 끝 -->
답변 1
$sql = " select bo_table, bo_subject
from {$g5['board_table']}
where gr_id = '{$gr_id}'
and bo_list_level <= '{$member['mb_level']}'
and bo_use_search = 1
and bo_device <> 'mobile' ";