뷰티 갤러리 위젯을 사용하고 있는데
xe - widgets - content - conf - info.xml 열고
정렬순서 부분을 찾아서
<options>
<value>voted_count</value>
<name xml:lang="ko">추천순</name>
</options>
이것을 추가하고
xe - widgets - content - content.class.php 열고
line 19 쯤에
정렬대상에서
if(!in_array($args->order_target, array('list_order','update_order'))) $args->order_target = 'list_order';
이것을
if(!in_array($args->order_target, array('list_order','update_order','voted_count'))) $args->order_target = 'list_order';
이것으로 변경
이 글까지는 찾았는데 문서 번호로 정렬을 하려면 어떻게 해야할까요?? ㅠㅠ
댓글 1
list_order : 기본값
update_order : 최근 업데이트순
voted_count : 추천순
document_srl : 문서번호순
voted_count 대신 document_srl을 사용해 보세요.