최근게시물 링크 삭제 가능한가요?
본문
최근게시물에 출력된 리스트의 링크를 없애고 싶은데 어떻게 하면 되나요?
<?php
//echo $list[$i]['icon_reply']." ";
echo "<a href=\"".$list[$i]['href']."\" title=\"".$list[$i]['wr_2']."\">";
echo $list[$i]['wr_2'];
if ($list[$i]['comment_cnt'])
echo "<span class=\"n_list_cmt\">({$list[$i]['comment_cnt']})</span>";
echo "</a>";
기존 subject를 wr_2로 바꿨는데 일반인이 클릭할 수 없게 링크를 없애고 싶어요.
답변 1
<?php
//echo $list[$i]['icon_reply']." ";
echo $list[$i]['wr_2'];
if ($list[$i]['comment_cnt'])
echo "<span class=\"n_list_cmt\">({$list[$i]['comment_cnt']})</span>";
이렇게 바꾸시면 됩니다.
답변을 작성하시기 전에 로그인 해주세요.