여기에 placeholder="" 이걸 삽입하고 싶은데 어디다가 넣어야하나요?
본문
<td class="wr_content">
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<p id="char_count_desc">이 게시판은 최소 <strong><?php echo $write_min; ?></strong>글자 이상, 최대 <strong><?php echo $write_max; ?></strong>글자 이하까지 글을 쓰실 수 있습니다.</p>
<?php } ?>
<?php echo $editor_html; // 에디터 사용시는 에디터로, 아니면 textarea 로 노출 ?>
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<div id="char_count_wrap"><span id="char_count"></span>글자</div>
<?php } ?> </td>
!-->
답변 1
게시판관리에서 에디터 사용안할경우,
plugin/editor/smarteditor2/editor.lib.php #53번줄
$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$smarteditor_class\" maxlength=\"65536\" style=\"width:100%;height:300px\">$content</textarea>";
▼ 위를 아래와같이 수정
$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$smarteditor_class\" maxlength=\"65536\" style=\"width:100%;height:300px\" placeholder=\"내용을 입력하세요\">$content</textarea>";
게시판관리에서 에디터를 사용할경우에는,
글쓰기 기본내용에 넣어주시면 됩니다.
!-->!-->
답변을 작성하시기 전에 로그인 해주세요.