이미지 최신글 관련 문의
본문
위 사진처럼 위에 메뉴를 넣으려고 하는데 아래처럼 오류가 납니다.. 어떻게 하면 좋을까요?ㅠ
도와주시면 감사합니다.
<!-- Tab links -->
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'movie_pic')">영화</button>
<button class="tablinks" onclick="openCity(event, 'book')">도서</button>
<button class="tablinks" onclick="openCity(event, 'newsplus')">굿즈</button>
</div>
<!-- Tab content -->
<div id="movie_pic" class="tabcontent">
<?php echo latest("theme/latest_category", 'movie_pic', 2, 38); ?>
</div>
<div id="book" class="tabcontent">
<?php echo latest("theme/latest_category", 'book', 2, 38); ?>
</div>
<div id="newsplus" class="tabcontent">
<?php echo latest("theme/latest_category", 'newsplus', 2, 38); ?>
</div>
답변 2
/skin/latest/latest_category/latest.skin.php
상단에 다음 코드를 추가해야 됩니다.
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
답변을 작성하시기 전에 로그인 해주세요.