일반 게시판 내용에다가 글을 넣고 싶은데요 ~
본문
안녕하세요 ~ 문의좀 드리고 싶어서요~
게시판 작성할때 제목넣는 칸에는
placeholder="제목" 을 넣어서 제목이라는 글자를 볼 수 있잖아요~?
내용에도 placeholder="내용"을 넣고 싶은데...혹시 어디다가 넣어야 할까요?
아래 문구중 어디일 것 같은데.. 잘몰라서요 ~ 부탁드립니다 !
--------------------------------------------------------------------------------------
<div class="write_div">
<label for="wr_content" class="sound_only">내용<strong>필수</strong></label>
<div class="wr_content <?php echo $is_dhtml_editor ? $config['cf_editor'] : ''; ?>" >
<?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 } ?>
</div>
</div>