최신게시물 링크 좀 봐주세요.
본문
수고하십니다.
최근 게시물에서 마우스를 이미지에 올리면
해당 페이지 주소가 나오는데
클릭을 해도 이동을 하지 않습니다.
<a href="<?php echo $list[$i]['href']?>"><img src="<?php echo $thumb['src']?>" alt="" />
여기서 어떻게 수정을 해야하는 것인지
조언 좀 부탁드립니다.
<div class="skin_latest_mainb">
<div class="bxslider1">
<?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']) {
$thumb_url = $thumb['src'];
} else {
$thumb_url = $latest_skin_url."/img/no-image.gif";
}
?>
<a href="<?php echo $list[$i]['href']?>"><img src="<?php echo $thumb['src']?>" alt="" />
<?php } ?>
</div>
</div>
답변 1
<a href="<?php echo $list[$i]['href']?>"><img src="<?php echo $thumb['src']?>" alt="" /></a>
뒤에 </a>가빠졌습니다.
답변을 작성하시기 전에 로그인 해주세요.