list 게시판 번호부분 숫자대신 새글 아이콘
본문
list게시판 번호라인에서 해당 게시물이 새글일때 새글 아이콘이 번호대신 노출되게 하고싶은데
도움부탁드립니다.
<td class="td_num">
<?php
if ($list[$i]['is_notice']) // 공지사항
echo '<strong>공지</strong>';
else if ($wr_id == $list[$i]['wr_id'])
echo "<span class=\"bo_current\">열람중</span>";
else
echo $list[$i]['num'];
?>
</td>
위는 수정부분으로 추정되는 소스입니다..
답변 4
isset이 안먹히는 경우는 아래와 같이 해주셔야 합니다.
echo $list[$i]['num'];
을
if ($list[$i]['icon_new'] != "") echo $list[$i]['icon_new'];
else echo $list[$i]['num'];
로 변경해주세요.
그리고 정상작동 여부 확인하였습니다.
아래와 같이 해주세요
echo $list[$i]['num'];
을
echo $list[$i]['icon_new'];
로 변경해주세요.
아래와 같이 다시 해주세요.
echo $list[$i]['num'];
을
if (isset($list[$i]['icon_new'])) echo $list[$i]['icon_new'];
else echo $list[$i]['num'];
list.skin.php 맨 밑에
<script>
$('img[alt=새글]').each(function() {
$(this).parent().siblings('.td_num:first').html($(this).get(0).outerHTML).end().end().remove();
});
</script>
넣어보세요.