묻고답하기
최근게시물 위젯에서 특정확장변수의 값이 있는 게시물만 출력
2014.03.20 22:42
안녕하세요~
게시판에 확장변수를 만들고 그 값을 저장하는것까지는 구현했는데요
최근게시물 위젯에서 해당 확장변수에 특정값이 있는 게시물만을 노출 시키고 싶습니다.
스킨은 인터미션 Content 위젯 기본 스킨을 사용중인데요
queries/getNewestDocuments.xml 이 있길래
여기에
<query id="getNewestDocuments" action="select">
<tables>
<table name="documents" />
</tables>
<columns>
<column name="*" />
</columns>
<conditions>
<condition operation="in" column="documents.module_srl" var="module_srl" filter="number" notnull="notnull" pipe="and" />
<condition operation="equal" column="documents.category_srl" var="category_srl" pipe="and" />
<condition operation="in" column="status" var="statusList" pipe="and" />
<condition operation="equal" column="ext.eid" default="main_view" pipe="and" />
<condition operation="like" column="ext.value" default="메인노출" pipe="and" />
</conditions>
<navigation>
<index var="sort_index" default="documents.list_order" order="order_type" />
<list_count var="list_count" default="20" />
</navigation>
</query>
이렇게 추가해봤는데 계속 전체 게시물을 다 가져오더라고요... 어떻게해야할지 조언 좀 부탁드립니다. ㅜ_ㅜ
댓글 2
-
투씨
2014.03.21 01:56
-
코멧
2014.03.21 10:27
감사합니다 ^^
파일이 맞다는거만 해도 많은 도움이 됐습니다 ^^
뭔가 필드네임이 안맞았거나 위젯 생성시 설정을 잘못했거나 했나보네요;; 열심히 찾아보겠습니다~
위 파일을 수정하면 되긴 합니다만 시간관계상 작성해서 테스트까지 하기엔 역부족이네요
다른 xml 파일들을 좀더 살펴보시면 답을 찾으실 수 있을 겁니다.