최신글 페이징 숫자 수
본문
안녕하세요. 최신글 페이징을 반영했는데요ㅠㅠ 페이징숫자 수를 제한을 주려고 하는데 방법이 있을까요?
답변 부탁드립니다ㅜㅜ
mmuffin님 스킨으로 제작했습니다.
<?php if (ceil($board['bo_count_write'] / $rows) > 1) { ?>
<div id="news_atc_page" class="page ">
<a href="javascript:;" title="이전" class="pre " onclick="latest_paging(this,'pre')">◀<span class="blind">이전</span></a>
<span class="num" style="">
<strong>
<?php
for ($x = 1; $x <= ceil($board['bo_count_write']/$rows); $x++) {
?>
<a href="javascript:;" title="<?php echo $x ;?> 페이지" onclick="latest_paging(this,<?php echo $x ;?>)" class="pg cur_page"><?php echo $x ;?></a>
<?
}
?>
</strong>
</span>
<a href="javascript:;" title="다음" class="next" onclick="latest_paging(this,'next')">▶<span class="blind">다음</span></a>
</div>
<?php } ?>
!-->
답변을 작성하시기 전에 로그인 해주세요.