웹마스터 팁
page_full_width">
Content 위젯에서 비밀글이 나오도록 수정하기
2015.09.05 17:44
/widgets/content/content.class.php 파일에서 아래와 같은 부분을 찾습니다.
1 2 3 | $obj ->list_count = $args ->list_count * $args ->page_count; $obj ->statusList = array ( 'PUBLIC' ); $output = executeQueryArray( 'widgets.content.getNewestDocuments' , $obj ); |
아래와 같이 SECRET을 추가합니다.
1 2 3 | $obj ->list_count = $args ->list_count * $args ->page_count; $obj ->statusList = array ( 'PUBLIC' , 'SECRET' ); $output = executeQueryArray( 'widgets.content.getNewestDocuments' , $obj ); |
$obj->list_count = $args->list_count * $args->page_count;
$obj->statusList = array('PUBLIC', 'SECRET');
$output = executeQueryArray('widgets.content.getNewestDocuments', $obj);
태그 연관 글
- [2017/03/26] 묻고답하기 비밀글 관련 질문입니다 제발 도와주세요ㅠㅠㅠㅠㅠ *2
- [2017/03/21] 묻고답하기 비밀댓글이 자꾸 보여요ㅠㅠㅠㅠ도와주세요....ㅠㅠㅠ
- [2015/08/25] 묻고답하기 XE 게시판 비밀글 자동 셋팅에 관해 여쭤봅니다. *11
- [2015/06/01] 묻고답하기 게시물이 비밀글일 때
- [2015/02/02] 묻고답하기 검색과 관련된 초보 유저입니다. 도와주세요ㅠㅠ *1