글 작성 시나 수정 시 특정 확장 변수를 관리자만 보이고 수정할 수 있게 하는 방법입니다.
[sketchbook5 게시판을 기준]
/modules/board/skins/sketchbook5/write_form.html 아래 부분을
<table cond="count($extra_keys)" class="et_vars exForm bd_tb">
<caption><strong><em>*</em></strong> <small>: {$lang->is_required}</small></caption>
<tr loop="$extra_keys=>$key,$val">
<th scope="row"><em cond="$val->is_required=='Y'">*</em> {$val->name}</th>
<td>{$val->getFormHTML()}</td>
</tr>
</table>
아래와 같이 수정하면 됩니다.
<table cond="count($extra_keys)" class="et_vars exForm bd_tb">
<caption><strong><em>*</em></strong> <small>: {$lang->is_required}</small></caption>
<tr loop="$extra_keys=>$key,$val">
<!--// admin_select 로 확장변수ID 생성시 관리자에게만 출력 -->
<!--@if($val->eid!=='admin_select')-->
<th scope="row"><em cond="$val->is_required=='Y'">*</em> {$val->name}</th>
<td>{$val->getFormHTML()}</td>
<!--@else-->
<!--@if($grant->is_admin && $val->eid=='admin_select')-->
<th scope="row"><em cond="$val->is_required=='Y'">*</em> {$val->name}</th>
<td>{$val->getFormHTML()}</td>
<!--@end-->
<!--@end-->
</tr>
</table>
확장 변수ID를 admin_select로 해야 합니다.


빨간테두리 부분은 글작성시나 수정시 관리자만 보입니다.
[ 다른 간단한 방법 ] - 똑띠님이 남기신 간단한 방법
write_form.html 파일에서 빨간색 부분만 추가하고 _secret 로 끝나는 확장변수 ID를 작성하면 됩니다.
<!--// 확장변수명이 _secret로 끝날때 숨김처리 하기(관리자는 예외) --> {@$match = preg_match('/_secret$/is', $val->eid)} <!--@if($match != 1 || $grant->is_admin)--> <th cond="" scope="row"><em cond="$val->is_required=='Y'">*</em> {$val->name}</th> <td cond="$val->eid!==$mi->etc_name">{$val->getFormHTML()}</td> <!--@end-->

Tip이 도움이 되었다면 댓글과 평가 부탁합니다.
Tip에 대한 궁금한 점은 댓글로 남겨 주시면 성심껏 답변 드립니다. 
