모바일 작성자 나타내기 질문입니다.
본문
모바일에서 작성자가 나타나지않네요
모바일에서도 글쓴이 작성자 닉네임을 볼수있었으면 합니다.
어떻게 해야하는지 부탁드립니다.
관련메뉴를 확인했으나 레이아웃변경메뉴만 보이고 이런 메뉴는 보이지않네요
답변부탁드립니다
답변 미리감사합니다..
답변 1
테마비사용시 mobile > skin > board > basic > list.skin.php을 수정하고
테마사용시 theme > basic > mobile > skin > board > basic > list.skin.php을 수정해서 아래와 같이 해주세요.
아래의 부분을 찾아서
<th scope="col">제목</th>
<th scope="col"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜</a></th>
아래 같이 글쓴이를 추가 해서 변경해주세요.
<th scope="col">제목</th>
<th scope="col">글쓴이</th>
<th scope="col"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜</a></th>
그리고
<td class="td_date"><?php echo $list[$i]['datetime2'] ?></td>
위의 부분을 찾아서
<td class="td_name sv_use"><?php echo $list[$i]['name'] ?></td>
<td class="td_date"><?php echo $list[$i]['datetime2'] ?></td>
위와 같이 글쓴이 출력 코드를 추가 해서 변경해주세요.