늘 고생하는 제작자님 항상 감사합니다.
추천글 게시판은 구축했고 인기글 게시판을 구축하려고 하는데
이제 조건이 조회수 30 이상 + 추천 1 이상으로 하고 싶어서
if($board_id == '5'){ //인기 게시판
$vote = '1';
$where = "`vote`>='{$vote}' AND `board_id` IN ('3','4') AND `parent_uid`='0' AND `notice`='' AND (`status`='' OR `status` IS NULL OR `status`='pending_approval')";
$view = '30';
$where = "`view`>='{$view}' AND `board_id` IN ('3','4') AND `parent_uid`='0' AND `notice`='' AND (`status`='' OR `status` IS NULL OR `status`='pending_approval')";
}
코드를 위에처럼 짜봤는데요.. 조회수가 30이 넘어가도 인기게시판으로 넘어가버리네요
혹시 어느 부분을 수정해야 하는지 알려주실 수 있나요?
안녕하세요~^^
kboard_list_where 필터를 활용해서 인기 게시판을 구현 중이신지요?
조회수 30 이상, 추천 1 이상인 게시글을 표시하시려면
아래의 코드를 활용해보시겠어요?
add_filter('kboard_list_where', 'my_kboard_list_where', 10, 3);
function my_kboard_list_where($where, $board_id, $content_list){
if($board_id == '5'){ //인기 게시판
$vote = '1';
$view = '30';
$where = "`vote`>='{$vote}' AND `view`>='{$view}' AND `board_id` IN ('3','4') AND `parent_uid`='0' AND `notice`='' AND (`status`='' OR `status` IS NULL OR `status`='pending_approval')";
}
return $where;
}
게시글을 볼 때 "이 게시글은 이동되었습니다." alert 창이 표시된다면
아래의 코드도 추가해보세요.
add_filter('kboard_allowed_board_id', 'test_kboard_allowed_board_id', 10, 2);
function test_kboard_allowed_board_id($allowed_board_id, $board_id){
if($allowed_board_id == '5'){ // 인기 게시판 id
$allowed_board_id = array('3', '4'); // 불러오는 게시판 id
}
return $allowed_board_id;
}
위의 코드는 올려주신 코드를 기준으로 작성되었습니다.
고맙습니다.
허억.. 고맙습니다.. 저렇게 하는 거였군요..