1. widget.skin.php 에서 아래와 같이 선언
2. /lib/apms.lib.php 에서 $sql_main = (isset($arr['main']) 검색 후 밑줄에 조건절 추가
// adp_andcol 컬럼값이 adp_andkey 인 데이터만 가져옴
$adp_and = (isset($arr['adp_andkey']) && $arr['adp_andkey']) ? "and ".apms_escape_string($arr['adp_andcol'])." = '".apms_escape_string($arr['adp_andkey'])."'" : "";
3. $sql_common = "from {$g5['board_new_table']} 검색 후 adp_and 추가
4. $sql_common = "from $tmp_write_table where 검색 후 adp_and 추가
위 방법으로 post 에서 커스텀 $list 를 구할 수 있다.