게시판 리스트 새글에는 new 표시가 뜨게 설정했는데요
새댓글 옆에도 new 표시를 하고싶습니다ㅠㅠ default 스킨인데 어디를 어떻게 수정하면 될까요? 부탁드립니다
댓글이라면
/wp-content/plugins/kboard-comments/skin/default/list-template.php 파일을 수정해주세요.
아래 내용 출력 코드 위에 굵게 표시된 코드를 추가해서 테스트 해보세요.
<div class="comments-list-content" itemprop="description">
<?php if((time()-strtotime($comment->created)) <= (60*60*12)):?>NEW<?php endif?>
<?php echo nl2br($comment->content)?>
</div>
아래 12는 12시간 이라는 뜻 입니다. 12시간동안 NEW 표시가 나타납니다.
<?php if((time()-strtotime($comment->created)) <= (60*60*12)):?>NEW<?php endif?>
말씀해주신대로 했더니 해결됐어요 감사합니다ㅠㅠㅠ 새해복많이받으세요!!!!!