해당 카테고리의 페이지네이션이 동작하지않고 전체값 기준으로 페이지네이션을 잡고 있는 상태
본문
여기에 있는 스킨을 사용하여 게시판을 제작하였습니다.
그런데 페이지네이션이 해당 카테고리의 페이지네이션이 동작하지않고 오로지 전체값을 기준으로 페이지네이션을 잡고 있는 상태입니다 ㅠㅠ
예를들어, 총 게시물 140개이고 목록당 12개씩 나오는데 그러면 토탇은 약 12페이지로 진행이되는데
wr_1여분필드를 활용한 카테고리를 누르면 전체리스트의 기준의 페이지네이션이 보여지고 있습니다 ㅠㅠ
조건문을 달아서 진행을 하려고 해도 도저히 먹히질않는 부분이여서요 ㅠㅠ
<?php if ($list[$i]['wr_1'] == $_GET['wr_1'] && $total_page >= 2) { ?>
<?php echo $write_pages; ?>
<?php } ?>
이런식으로 조건문을 단 상태입니다 하지만 결과는 전체 리스트에는 페이지네이션이 잘 나오지만 다른카테고리에서는 12개 이상이 있는 카테고리에도 나오질 않습니다.
조건문이 이상한건지.. 해결방안에 대한 자문을 구합니다 ㅠㅠ
혹시, bbs를 고쳐야하는지 해서 페이지 네이션부분의 소스 안내드립니다.
$write_pages = get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, './board.php?bo_table='.$bo_table.$qstr."&wr_1=".$_GET['wr_1'].'&page=');
$list_href = '';
$prev_part_href = '';
$next_part_href = '';
if ($sca || $stx) {
$list_href = './board.php?bo_table='.$bo_table;
//if ($prev_spt >= $min_spt)
$prev_spt = $spt - $config['cf_search_part'];
if (isset($min_spt) && $prev_spt >= $min_spt) {
$prev_part_href = './board.php?bo_table='.$bo_table.$qstr.'&spt='.$prev_spt.'&page=1';
$write_pages = page_insertbefore($write_pages, '<a href="'.$prev_part_href.'" class="pg_page pg_prev">이전검색</a>');
}
$next_spt = $spt + $config['cf_search_part'];
if ($next_spt < 0) {
$next_part_href = './board.php?bo_table='.$bo_table.$qstr.'&spt='.$next_spt.'&page=1';
$write_pages = page_insertafter($write_pages, '<a href="'.$next_part_href.'" class="pg_page pg_end">다음검색</a>');
}
}
답변 1
제가 생각하는 해결방안입니다.
/extend/user.config.php 에 코드 추가
if ($bo_table == "해당 게시판 ID") {
$sca = $wr_1;
}