bxSlider로 갤러리 슬라이더 만드는데요.
본문
jssor슬라이더 스킨 올리신분껄로,
제꺼에 맞게 수정중입니다.
$list[$i]['wr_link2']; 이 값이 널값이 나오는데요
왜 그럴까요?
<?php
for ($i=0; $i<count($list); $i++) {
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $imgwidth, $imgheight);
if($thumb['src']) {
$latest_img = $thumb['src'];
$latest_subjext = $list[$i]['subject'];
} else {
$latest_img = $latest_skin_url ."/img/noimg.gif";
$latest_subject = "No Image";
}
$latest_link1 = $list[$i]['wr_link1'];
$latest_link2 = $list[$i]['wr_link2'];
$latest_href = $list[$i]['href'];
if ($latest_link1) $latest_href = $latest_link1;
//if ($latest_link2=="_blank" || $latest_link2=="_self" || $latest_link2=="none") $latest_target=" target='".$latest_link2."'";
if ($latest_link2) $latest_target=" target='".$latest_link2."'";
//bxslider 아이템 출력
echo "<div class=\"item\" >";
if ($latest_link2=="none") { } else {
echo "<a href=\"{$latest_link1}\"";
}
echo $latest_target;
if ($latest_link2=="none") { } else {
echo ">";
}
echo "<img src=\"{$latest_img}\" alt=\"{$latest_subject}\" title=\"{$latest_subject}\">";
if ($latest_link2=="none") { } else {
echo "</a>";
}
echo "</div>";
}
if (count($list) == 0) { //게시물이 없을 때
?>
게시물이 없습니다.
<?php
}
?>
답변 2
wr_link1은 링크1
wr_link2는 링크2 입니다.
게시물 작성시 링크2에 값을 넣으셨나요?
if ($latest_link2=="none")
하지 마시고요
if ($latest_link2!="")
혹은
if (!$latest_link2)
으로 하세요 none은 php에서는 안 씁니다.
답변을 작성하시기 전에 로그인 해주세요.