안녕하세요 최신글 이미지 썸네일 노출 관련 문의좀 드릴게요
본문
basic 최신글을 사용중에 썸네일 노출할수 있게해서 사용중에 있는데요
이게 이미지가 있는 제품의 경우에는 정상적으로 잘나오지만
이미지가 없는경우에는 썸네일자체가 no image로 나오는데요 !
이미지가 없을 경우에는 그냥 이미지를 없애는 방법좀 여쭤볼께요
너무초보라 해결하기 힘들어 도움요청드려요
1) 이미지가 없을경우 no image가 아닌 그냥 이미지노출이 안되고 제목만 나오게부탁드려요:0
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
$thumb_width=78;
$thumb_height=78;
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$latest_skin_url.'/style.css">', 0);
?>
<!-- <?php echo $bo_subject; ?> 최신글 시작 { -->
<div class="lt">
<ul>
<?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 = '<img src="'.$thumb['src'].'" alt="'.$list[$i]['subject'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
} else {
$img = "NO IMAGE";
}?>
<li>
<div class="lt_image"><a href="<?php echo $list[$i]['href'];?>"><span class="lt_roll1"></span><?php echo $img;?></a></div>
<div class="inner"><div class="tit">
<?php
//echo $list[$i]['icon_reply']." ";
echo "<a href=\"".$list[$i]['href']."\">";
if ($list[$i]['is_notice'])
echo "<strong>".$list[$i]['subject']."</strong>";
else
echo $list[$i]['subject'];
if ($list[$i]['comment_cnt'])
echo $list[$i]['comment_cnt'];
// if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; }
// if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }
if (isset($list[$i]['icon_new'])) echo " " . $list[$i]['icon_new'];
?></div><div class="mn-mn-r"><?=cut_str(str_replace(" ", "", trim(strip_tags($list[$i]['wr_content']))), 210)?></div></a>
</div>
</li>
<?php } ?>
<?php if (count($list) == 0) { //게시물이 없을 때 ?>
<li>게시물이 없습니다.</li>
<?php } ?>
</ul>
</div>
<!-- } <?php echo $bo_subject; ?> 최신글 끝 -->
!-->
답변 1
<div class
=
"lt_image"
><a href=
"<?php echo $list[$i]['href'];?>"
><span
class
=
"lt_roll1"
></span><?php
echo
$img
;?></a></div>
이부분을 아래처럼 차고하시면 될것입니다.
<? if
(
$thumb
[
'src'
]){ ?>
<div
class
=
"lt_image"
><a href=
"<?php echo $list[$i]['href'];?>"
><span
class
=
"lt_roll1"
></span><?php
echo
$img
;?></a></div>
<?}?>
답변을 작성하시기 전에 로그인 해주세요.