답변 2개
모바일 쓰기 스킨 mobile > skin > board > basic > write.skin.php 를 수정해서
<input type="hidden" name="page" value="<?php echo $page ?>">
의 코드 아래에
<?php if(G5_IS_MOBILE()){ ?>
<input type="hidden" name="wr_10" value="mobile">
<?php } ?>
를 추가해주세요.(wr_10이 이미 사용중인 경우 남는 여분필드명으로 해주시면 됩니다.)
그리고,
함수 모음 라이브러리 lib > common.lib.php 를 수정해서
$list['icon_secret'] = '<img src="'.$skin_url.'/img/icon_secret.gif" alt="비밀글">';
의 코드 아래에
if (strstr($list['wr_10'], 'mobile')) {
$list['icon_secret'] = '<img src="'.$skin_url.'/img/icon_mobile.gif" alt="모바일">';
}
를 추가해주세요.(wr_10이 이미 사용중인 경우 남는 여분필드명으로 해주시면 됩니다.)
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인