목록에서 업데이트된 글에 이미 기본적으로 new, update 아이콘들이 나타나는데요, 여기다가 댓글수까지 bold로 표시하고 싶었습니다.
보드 스킨 style.list.html에서 댓글부분을 찾아 아래와 같이 코드를 넣습니다.
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())-->
{@ $time_check = date("YmdHis", time()-(180*60*$module_info->duration_new));}
<!--@if($document->get('last_update')>$time_check)-->
<span class="replyAndTrackback" title="Replies"><img src="/images/{$module_info->colorset}/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
<!--@else-->
<span class="replyAndTrackback" title="Replies"><font color=9999> {$document->getCommentCount()}</font></span>
<!--@end-->
<!--@end-->
보드 스킨 style.gallery.html에서 댓글부분을 찾아 아래와 같이 코드를 넣습니다.
<!--@if($document->getCommentCount())-->
{@ $time_check = date("YmdHis", time()-(180*60*$module_info->duration_new));}
<!--@if($document->get('last_update')>$time_check)-->
<span class="replyAndTrackback" title="Replies"><font color=#FF6542>(<strong>{$document->getCommentCount()}</strong>)</font></span>
<!--@else-->
<span class="replyAndTrackback" title="Replies">({$document->getCommentCount()})</span>
<!--@end-->
<!--@end-->
스킨을 변경하는 것이기에 코어 업데이트 해도 문제 없습니다.
감사합니다.
출처 : http://www.xpressengine.com/?_filter=search&mid=tip&search_keyword=%EB%8C%93%EA%B8%80&search_target=title&page=1&division=-18865340&document_srl=18776079
출처에서 약간 바뀐것이 있어서 수정하였습니다.