각 카테고리별 베스트글
본문
안녕하세요. 고수님들!!!
고수님들 덕분으로 눈동냥하며 배워가는 연습생입니다.
고수님들의 지혜를 좀 얻고자 질문드려 봅니다.
1차 카테고리
2차 카테고리01 - 분류1 분류2 분류3
2차 카테고리02 - 분류1 분류2 분류3
2차 카테고리03 - 분류1 분류2 분류3
이렇게 카테고리가 등록되어있고,
각각 2차 카테고리마다 최신글을 모아 보여지게 하고 싶은데
가능할까요?
그러니깐
2차 카테고리01의 최신글모음, 2차 카테고리02의 최신글모음, 2차 카테고리03의 최신글모음을
각자 넣고싶은데 이게 잘 안돼요~
제 생각에 가능할것같아 요래조래 해봐도 당쵀~ 표현이 안됩니다.
기것해야 2차 카테고리 통틀어서 똑같은 최신글만 표현이 되는것 밖에,,,,
고수님들~ 만들수있게 도와주세요.
대충의 방법만이라도 조언 부탁드립니다.
참고로 그누보드5를 사용하고 있어요.
답변 3
latest()함수를 변형하여 만드시면 될것같습니다.
function latest($skin_dir='', $bo_table, $category='', $rows=10, $subject_len=40, $cache_time=1, $options='' )
{
global $g5;
if (!$skin_dir) $skin_dir = 'basic';
if(preg_match('#^theme/(.+)$#', $skin_dir, $match)) {
if (G5_IS_MOBILE) {
$latest_skin_path = G5_THEME_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
if(!is_dir($latest_skin_path))
$latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
$latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
} else {
$latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
$latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
}
$skin_dir = $match[1];
} else {
if(G5_IS_MOBILE) {
$latest_skin_path = G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
$latest_skin_url = G5_MOBILE_URL.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
} else {
$latest_skin_path = G5_SKIN_PATH.'/latest/'.$skin_dir;
$latest_skin_url = G5_SKIN_URL.'/latest/'.$skin_dir;
}
}
$caches = null;
if(G5_USE_CACHE) {
$cache_file_name = "latest-{$bo_table}-{$skin_dir}-{$rows}-{$subject_len}-".g5_cache_secret_key();
$caches = g5_get_cache($cache_file_name);
$cache_list = isset($caches['list']) ? $caches['list'] : array();
g5_latest_cache_data($bo_table, $cache_list);
}
if( $caches === false ){
$list = array();
$board = get_board_db($bo_table, true);
$bo_subject = get_text($board['bo_subject']);
$tmp_write_table = $g5['write_prefix'] . $bo_table; // 게시판 테이블 전체이름
$sql = " select * from {$tmp_write_table} where wr_is_comment = 0 and ca_name = '$category' order by wr_num limit 0, {$rows} ";
$result = sql_query($sql);
for ($i=0; $row = sql_fetch_array($result); $i++) {
try {
unset($row['wr_password']); //패스워드 저장 안함( 아예 삭제 )
} catch (Exception $e) {
}
$row['wr_email'] = ''; //이메일 저장 안함
if (strstr($row['wr_option'], 'secret')){ // 비밀글일 경우 내용, 링크, 파일 저장 안함
$row['wr_content'] = $row['wr_link1'] = $row['wr_link2'] = '';
$row['file'] = array('count'=>0);
}
$list[$i] = get_list($row, $board, $latest_skin_url, $subject_len);
$list[$i]['first_file_thumb'] = (isset($row['wr_file']) && $row['wr_file']) ? get_board_file_db($bo_table, $row['wr_id'], 'bf_file, bf_content', "and bf_type between '1' and '3'", true) : array('bf_file'=>'', 'bf_content'=>'');
$list[$i]['bo_table'] = $bo_table;
// 썸네일 추가
if($options && is_string($options)) {
$options_arr = explode(',', $options);
$thumb_width = $options_arr[0];
$thumb_height = $options_arr[1];
$thumb = get_list_thumbnail($bo_table, $row['wr_id'], $thumb_width, $thumb_height, false, true);
// 이미지 썸네일
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
$list[$i]['img_thumbnail'] = '<a href="'.$list[$i]['href'].'" class="lt_img">'.$img_content.'</a>';
// } else {
// $img_content = '<img src="'. G5_IMG_URL.'/no_img.png'.'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'" class="no_img">';
}
}
}
g5_latest_cache_data($bo_table, $list);
if(G5_USE_CACHE) {
$caches = array(
'list' => $list,
'bo_subject' => sql_escape_string($bo_subject),
);
g5_set_cache($cache_file_name, $caches, 3600 * $cache_time);
}
} else {
$list = $cache_list;
$bo_subject = (is_array($caches) && isset($caches['bo_subject'])) ? $caches['bo_subject'] : '';
}
ob_start();
include $latest_skin_path.'/latest.skin.php';
$content = ob_get_contents();
ob_end_clean();
return $content;
}
이렇게 만드시고 인덱스에서
echo latest('pic_list', 'free','카테고리1', 4, 23);
echo latest('pic_list', 'free','카테고리2', 4, 23);
이런식으루요
그누보드 기본 메인처럼
최근글을 원하는 형태로 뽑아오면 되지 않을까요?
먼저 답변 감사드립니다.
그렇게 불러올때 1차 카테고리 스킨에 2차 카테고리의 최신글 1가지만 2차카테고리에 뿌려지게 되더라구요.
전 2차01의 최신글, 2차02의 최신글, 2차03의 최신글 처럼 각자 따로 최신글의 첫화면에 나타나기를 원해서요.ㅠㅠ
쉽게 말씀드리면, 영카트의 상품리스트처럼 각 카테고리별로 베스트상품이 첫화면에 나타나는것 처럼 그누보드를 그렇게 하고 싶어서요~
근데 영카트를 분석할 능력은 안되고,,,,해서,,,,^^;;;