공부/Rhymix

게시판 인기글 버튼 추가하기

미친사람 2020. 12. 2. 00:52
반응형

board >board.view.php

 

// setup the sort index and order index

를 컨트롤 + F로 검색

 

// setup the sort index and order index
$args->sort_index = Context::get('sort_index');
$args->order_type = Context::get('order_type');
if ($args->sort_index == 'best')
{
     // 추천수 10이상
     $args->search_target = 'voted_count';
     $args->search_keyword = 10;
}
if(!in_array($args->sort_index, $this->order_target))
{
$args->sort_index = $this->module_info->order_target?$this->module_info->order_target:'list_order';
}

 

빨간부분 추가

 

주소 형식은

 

&sort_index=best

 

를 따로 버튼으로 추가하면됨

반응형