mint mobile 테마 메인슬라이드 노출 개수 질문입니다.
본문
mint mobile테마를 사용중입니다. 메인 슬라이드 노출 개수가 최대 4개까지만 나오더라구요
<div class="lt_slide ">
<ul class="bxslider">
<?php
for ($i=0; $i<count($list); $i++) {
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $thumb_width, $thumb_height);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
} else {
$img_content = '<span style="width:'.$thumb_width.'px;height:'.$thumb_height.'px" class="no_img">no image</span>';
}
?>
<li class="swiper-slide">
<?php echo $img_content; ?>
</li>
<?php } ?>
<?php if ($i == 0) { //게시물이 없을 때 ?>
<li class="no_bd">게시물이 없습니다.</li>
<?php } ?>
</ul>
</div>
<script>
$(document).ready(function(){
$('.bxslider').bxSlider({
auto: true,
});
});
</script>
코드를 보면 개수 제한은 없는거 같은데 원래 기본으로 4개만인가요?
아니면 개수를 따로 더 설정할 수 있는건가요?
답변 1
index.php 에보시면
<?php
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 사용방법 : latest(스킨, 게시판아이디, 출력라인, 글자수, 캐시타임, option);
// 테마의 스킨을 사용하려면 theme/basic 과 같이 지정
$options = array(
'thumb_width' => 600, // 썸네일 width
'thumb_height' => 455, // 썸네일 height
);
echo latest('theme/main_slide', 'slide', 4, 55, 1, $options);
?>
이렇게 슬라이드 소스가있습니다.
여기서
echo latest('theme/main_slide', 'slide', 4, 55, 1, $options);
숫자 4를 원하시는 갯수로 수정하시면됩니다.