선택한 게시물 메인에 나오게
본문
최근 게시물 노출이 아닌 선택한 게시물만 메인에 나오게 하고 싶은데요
두 가지 중 하나 선택해서 메인 latest에 나오 게 하고 싶어요~(일반 사이트입니다.)
개발자 없는 회사라 알기 쉽게 말씀해 주시면 새겨 듣겠습니다 ㅠㅠ
https://sir.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=6457
이분꺼 참고해서 했는데 잘 안되더라구요~
write.php
<input type="checkbox" name="wr_5" value="1"<? echo ($wr_5 =='1') ? ' checked="checked"' : '';?>> 신상품
<input type="checkbox" name="wr_6" value="1"<? echo ($wr_6 =='1') ? ' checked="checked"' : '';?>>베스트
index.php
<?php
echo latest('theme/pic_block', 'product', 4, 23); //이 부분도 수정해야 하나요?
?>
!-->!-->
답변 1
lib/latest.lib.php 7라인 수정
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $cache_time=1, $options='',$where=array())
lib/latest.lib.php 58라인 수정
$add_where = '';
if(count($where)){
foreach ($where as $key=>$val){
$add_where.= " and {$key} = '{$val}' ";
}
}
$sql = " select * from {$tmp_write_table} where wr_is_comment = 0 {$add_where} order by wr_num limit 0, {$rows} ";
사용
echo latest('theme/pic_block', 'product', 4, 23,'','',array('wr_5'=>1)); // 신상품
echo latest('theme/pic_block', 'product', 4, 23,'','',array('wr_6'=>1)); // 베스트
답변을 작성하시기 전에 로그인 해주세요.