latest.skin.php에서 특정카테고리 출력하게 하는방법이 궁금합니다!!
본문
<ul>
<?php
for ($i=0; $i<count($list); $i++) {
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $thumb_width, $thumb_height, false, true);
if($thumb['src']) {
$img = $thumb['src'];
} else {
$img = G5_IMG_URL.'/no_img.png';
}
$img_content = '<img src="'.$img.'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
?>
<li>
<div class="gall_con">
<div class="gall_img">
<a href="<?php echo $list[$i]['href'] ?>"><?php echo $img_content; ?></a>
</div>
<div class="gall_text_href">
<span>
<span>
<?php if ($is_category && $list[$i]['ca_name']) { ?>
<h4 class="bo_cate_link"><?php echo $list[$i]['ca_name'] ?></h4>
<?php } ?>
<h3 class="bo_tit"><?php echo $list[$i]['subject'] ?></h3>
<a href="<?php echo $list[$i]['href'] ?>">VIEW</a>
</span>
</span>
</div>
</div>
</li>
<?php } ?>
<?php if (count($list) == 0) { //게시물이 없을 때 ?>
<li class="empty_li">게시물이 없습니다.</li>
<?php } ?>
</ul>
latest.skin.php에 이렇게 출력하는부분에서
A라는 카테고리만 나타나게 하고싶습니다!!
팁게시판에서 구분자 | 를 통해서 나오게하는방법이 있는데
저는 위와같이 구성할 필요가 있어서..ㅠㅠㅠ
도와주시면 정말감사하겠습니다!!
if for문 써서 막해봤는데도 잘안되네요 ㅠㅠㅠ
!-->
답변을 작성하시기 전에 로그인 해주세요.