Skip to content

Commit

Permalink
인기글 활성화시 공지사항은 리스트에서 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
sdxcsdxc committed May 25, 2023
1 parent bd2d114 commit 36c3192
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
8 changes: 7 additions & 1 deletion plugins/kboard/class/KBContentList.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -979,10 +979,11 @@ public function hasNext(){

/**
* 인기글 리스트를 반환한다.
* @param boolean $with_notice
* @return resource
* @return KBoard
*/
public function getPopularList(){
public function getPopularList($with_notice=false){
global $wpdb;

if(!$this->board){
Expand Down Expand Up @@ -1048,8 +1049,13 @@ public function getPopularList(){
$limit = $this->board->meta->popular_count;
}

if(!$with_notice){
$where[] = "`{$wpdb->prefix}kboard_board_content`.`notice`=''";
}

$select = apply_filters('kboard_popular_list_select', '*', $this->board_id, $this);
$from = apply_filters('kboard_popular_list_from', "`{$wpdb->prefix}kboard_board_content`", $this->board_id, $this);

$where = apply_filters('kboard_popular_list_where', implode(' AND ', $where), $this->board_id, $this);
$orderby = apply_filters('kboard_popular_list_orderby', "{$orderby}", $this->board_id, $this);

Expand Down
13 changes: 7 additions & 6 deletions plugins/kboard/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
3. kboard_latest_select 필터 추가
4. kboard_latest_from 필터 추가
5. kboard_latest_where 필터 추가
6. kboard_latest_orderby 필터 추가
7. 회원 본인의 글만 표시하는 숏코드 추가 [kboard_my_list]
8. kboard_autolink 도메인 지원 확대
9. KBoard 자체 SEO 기능 최적화 코드 수정 (All In One SEO Pack, Rank Math 플러그인 대응)
10. Summernote 에디터 사진 입력버튼을 비디오 입력 버튼으로 변경
11. 버그 수정
5. kboard_latest_orderby 필터 추가
6. 회원 본인의 글만 표시하는 숏코드 추가 [kboard_my_list]
7. kboard_autolink 도메인 지원 확대
8. KBoard 자체 SEO 기능 최적화 코드 수정 (All In One SEO Pack, Rank Math 플러그인 대응)
9. Summernote 에디터 사진 입력버튼을 비디오 입력 버튼으로 변경
10. 인기글 활성화시 인기글 리스트에 공지사항 제거
10. 버그 수정


6.3
Expand Down

0 comments on commit 36c3192

Please sign in to comment.