KBoard에 필드를 추가했는데 수정하면 값이 리셋되요.

안녕하세요! 위드프레스에 KBoard(케이보드) 설치해서 필드를 추가했습니다.

필드 추가하는 방법을 찾아서 editor.php / document.php 수정했습니다.

잘 되긴하는데요. 잘 작성되고, 잘 보여지는데, 작성된글 수정을 누르면 select로 입력받은 값이 맨 처음에 있는 값으로 모두 리셋됩니다.

이거 수정할 수 없을까요? contact form 스킨이라서 작성된글 보기는 관리자만 됩니다.

제가 사용한 코드는

editor.php 에서,

        <div class="kboard-attr-row">
            <label class="attr-name">희망근무지</label>
            <div class=”attr-value”>
                <select name=”kboard_option_hopeplace” value=”<?php echo $content->option->hopeplace?>”>
                <option value="서울"<?php if($content->option->location == '1'):?> selected<?php endif?>>서울</option>
                <option value="경기"<?php if($content->option->location == '2'):?> selected<?php endif?>>경기</option>
                <option value="인천"<?php if($content->option->location == '3'):?> selected<?php endif?>>인천</option>
                <option value="강원"<?php if($content->option->location == '4'):?> selected<?php endif?>>강원</option>
                <option value="충북"<?php if($content->option->location == '5'):?> selected<?php endif?>>충북</option>
                <option value="충남"<?php if($content->option->location == '1'):?> selected<?php endif?>>충남</option>
                <option value="전북"<?php if($content->option->location == '2'):?> selected<?php endif?>>전북</option>
                <option value="전남"<?php if($content->option->location == '3'):?> selected<?php endif?>>전남</option>
                <option value="경북"<?php if($content->option->location == '4'):?> selected<?php endif?>>경북</option>
                <option value="경남"<?php if($content->option->location == '5'):?> selected<?php endif?>>경남</option>
                <option value="대구"<?php if($content->option->location == '1'):?> selected<?php endif?>>대구</option>
                <option value="대전"<?php if($content->option->location == '2'):?> selected<?php endif?>>대전</option>
                <option value="광주"<?php if($content->option->location == '3'):?> selected<?php endif?>>광주</option>
                <option value="울산"<?php if($content->option->location == '4'):?> selected<?php endif?>>울산</option>
                <option value="부산"<?php if($content->option->location == '5'):?> selected<?php endif?>>부산</option>
                <option value="제주"<?php if($content->option->location == '1'):?> selected<?php endif?>>제주</option>                
                </select>
            </div>
        </div>
        
        <div class="kboard-attr-row">
            <label class="attr-name">최종학력</label>
            <div class="attr-value"><select name="kboard_option_education" value="<?php echo $content->option->education?>">
                <option value="middleschool">고졸이하</option>
                <option value="highschool">고졸</option>
                <option value="college">전문대졸</option>
                <option value="university">대졸</option>
                <option value="graduateschool">석사이상</option>
                </select>
            </div>
        </div>
        <div class="kboard-attr-row">
            <label class="attr-name">성별</label>
            <div class="attr-value"><select name="kboard_option_gender" value="<?php echo $content->option->gender?>">
                <option value="man">남</option>
                <option value="woman">여</option>
                </select>
            </div>
        </div>
        <div class="kboard-attr-row">
            <label class="attr-name">생년월일</label>
            <div class="attr-value"><input type="text" name="kboard_option_birth" value="<?php echo $content->option->birth?>"></div>
        </div>
        <div class="kboard-attr-row">
            <label class="attr-name">취업경력</label>
            <div class="attr-value"><select name="kboard_option_career" value="<?php echo $content->option->career?>">
                <option value="1year">1년</option>
                <option value="2year">2년</option>
                <option value="3year">3년</option>
                <option value="4year">4년</option>
                <option value="5year">5년 이상</option>
                </select>
            </div>
        </div>        
        <div class="kboard-attr-row">
            <label class="attr-name">현재취업여부</label>
            <div class="attr-value"><select name="kboard_option_condition" value="<?php echo $content->option->condition?>">
                <option value="x">미취업</option>
                <option value="o">재직중</option>
                </select>
            </div>
        </div>
        <div class="kboard-attr-row">
            <label class="attr-name">지원분야</label>
            <div class="attr-value"><input type="text" name="kboard_option_field" value="<?php echo $content->option->field?>"></div>
        </div>        
        <div class="kboard-attr-row">
            <label class="attr-name">취업가능시기</label>
            <div class="attr-value"><input type="text" name="kboard_option_when" value="<?php echo $content->option->when?>"></div>
        </div>

        <label class=”attr-name”>지원분야</label>
        <div class=”attr-value”>
            <select name=”kboard_option_fieldfield” value=”<?php echo $content->option->fieldfield?>”>
            <option value="제품/생산"<?php if($content->option->location == '1'):?> selected<?php endif?>>제품/생산</option>
            <option value="판매/판촉"<?php if($content->option->location == '2'):?> selected<?php endif?>>판매/판촉</option>
            <option value="시설/관리"<?php if($content->option->location == '3'):?> selected<?php endif?>>시설/관리</option>
            <option value="경비/미화"<?php if($content->option->location == '4'):?> selected<?php endif?>>경비/미화</option>
            <option value="컨트리클럽"<?php if($content->option->location == '5'):?> selected<?php endif?>>컨트리클럽</option>
            </select>
        </div>

 

document.php 에서,

                    <?php if($content->option->hopeplace):?><p>희망근무지 : <?php echo $content->option->hopeplace?></p><?php endif?>
                    <?php if($content->option->education):?><p>최종학력 : <?php echo $content->option->education?></p><?php endif?>
                    <?php if($content->option->gender):?><p>성별 : <?php echo $content->option->gender?></p><?php endif?>
                    <?php if($content->option->birth):?><p>생년월일 : <?php echo $content->option->birth?></p><?php endif?>
                    <?php if($content->option->career):?><p>경력 : <?php echo $content->option->career?></p><?php endif?>
                    <?php if($content->option->condition):?><p>현재취업여부 : <?php echo $content->option->condition?></p><?php endif?>
                    <?php if($content->option->field):?><p>지원분야 : <?php echo $content->option->field?></p><?php endif?>
                    <?php if($content->option->when):?><p>취업가능시기 : <?php echo $content->option->when?></p><?php endif?>
                    <?php if($content->option->when):?><p>지원분야 : <?php echo $content->option->fieldfield?></p><?php endif?>

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요