최신글 위젯 게시판 하나밖에 표시 안됨
본문
안녕하세요!
그누보드 기본테마에 트리플님의 최신글 위젯을 사용하고 있습니다
https://sir.kr/g5_skin/43629#c_44640
게시판 불러오는 부분이
echo latest('theme/pic_owlCarousel', 'free', 8, 23, '', $options);
여긴데요
그대로 복사해서
echo latest('theme/pic_owlCarousel', 'research', 4, 23, '', $options);
echo latest('theme/pic_owlCarousel', 'matls', 4, 23, '', $options);
echo latest('theme/pic_owlCarousel', 'submatls', 4, 23, '', $options);
echo latest('theme/pic_owlCarousel', 'idea', 4, 23, '', $options);
이렇게 여러 개를 놓으니 처음의 게시판만 제대로 표시되고 나머지는 뜨질 않습니다; 이름만 뜨고 게시물은 표시가 안됩니다
어느 부분을 어떻게 수정하면 될까요? 답변해주시면 감사합니다(ㅠㅠ);;;
답변 2
html 문서 안에서 ID 는 중복이 되면 안됩니다.
* latest.skin.php
1)
#pic-lt-owlCarousel .post-subject { height:<?php echo $line_height;?>px; }
#pic-lt-owlCarousel .img-wrap { padding-bottom:<?php echo $img_h;?>%; }
->
.pic-lt-owlCarousel .post-subject { height:<?php echo $line_height;?>px; }
.pic-lt-owlCarousel .img-wrap { padding-bottom:<?php echo $img_h;?>%; }
2)
<div id="pic-lt-owlCarousel" class="pic-lt-owlCarousel owl-theme owl-carousel">
->
<div class="pic-lt-owlCarousel owl-theme owl-carousel">
3)
$('#pic-lt-owlCarousel').owlCarousel({
->
$('.pic-lt-owlCarousel').owlCarousel({
감사합니당...