글쓰기 목록 중에서요.
본문
글쓰기를 누르면 나오는
위와 같은 목록 중에서
이메일, 홈페이지, 옵션 저 세가지는 불필요한 것 같아서 없애고 싶은데 혹시 가능할까요?
답변 1
해당 스킨 write.skin.php 파일에서 아래 부분 삭제하거나 주석처리하세요.
<?php if ($is_email) { ?>
<tr>
<th scope="row"><label for="wr_email">이메일</label></th>
<td><input type="text" name="wr_email" value="<?php echo $email ?>" id="wr_email" class="frm_input email" size="50" maxlength="100"></td>
</tr>
<?php } ?>
<?php if ($is_homepage) { ?>
<tr>
<th scope="row"><label for="wr_homepage">홈페이지</label></th>
<td><input type="text" name="wr_homepage" value="<?php echo $homepage ?>" id="wr_homepage" class="frm_input" size="50"></td>
</tr>
<?php } ?>
<?php if ($option) { ?>
<tr>
<th scope="row">옵션</th>
<td><?php echo $option ?></td>
</tr>
<?php } ?>