최신글 latest에 자꾸 옛날글이 나옵니다.
본문
메인에는 아래처럼 선언했는데요
<div class="latest_wr univ_USA">
<?php
echo latest('theme/pic_basic2', 'univ_USA', 2, 20);
?>
</div>
화면에 자꾸 18년도 글이 나옵니다.
19년도 글도 많은데 왜 최신글이 안나오고 옛날글이 나오는걸까요?
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$latest_skin_url.'/style.css">', 0);
$thumb_width = 320;
$thumb_height = 200;
?>
<div id="tab2_boxes">
<div class="pic_lt">
<!--h2 class="lat_title"><a href="<?php echo G5_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><?php echo $bo_subject ?></a></h2-->
<ul>
<?php
for ($i=0; $i<count($list); $i++) {
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $thumb_width, $thumb_height, false, true);
if($thumb['src']) {
$img = $thumb['src'];
} else {
$img = G5_IMG_URL.'/no_img.png';
$thumb['alt'] = '이미지가 없습니다.';
}
$img_content = '<img src="'.$img.'" alt="'.$thumb['alt'].'" >';
?>
<li>
<a href="<?php echo $list[$i]['href'] ?>" class="lt_img tab2_right"><?php echo $img_content; ?></a>
<div class="tab2_left">
<div class="latest_title"><!--아이콘, 게시판제목 묶는 div -->
<?php
if ($list[$i]['icon_secret']) echo "<i class=\"fa fa-lock\" aria-hidden=\"true\"></i><span class=\"sound_only\">비밀글</span> ";
if ($list[$i]['icon_new']) echo "<span class=\"new_icon\">N<span class=\"sound_only\">새글</span></span>";
if ($list[$i]['icon_hot']) echo "<span class=\"hot_icon\">H<span class=\"sound_only\">인기글</span></span>";
echo "<a href=\"".$list[$i]['href']."\"> ";
if ($list[$i]['is_notice'])
echo "<strong>".$list[$i]['subject']."</strong>";
else
echo $list[$i]['subject'];
echo "</a></div>";
// if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; }
// if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }
//echo $list[$i]['icon_reply']." ";
// if ($list[$i]['icon_file']) echo " <i class=\"fa fa-download\" aria-hidden=\"true\"></i>" ;
//if ($list[$i]['icon_link']) echo " <i class=\"fa fa-link\" aria-hidden=\"true\"></i>" ;
if ($list[$i]['comment_cnt']) echo "
<span class=\"lt_cmt\">+ ".$list[$i]['wr_comment']."</span>";
?>
<div class="lt_infos">
<span class="lt_name"><?php echo $list[$i]['name'] ?></span>
<span class="lt_date"><?php echo $list[$i]['datetime2'] ?></span>
</div>
<div class="lt_textbox">
<?php echo conv_subject($list[$i]['wr_content'], 115, '...') ?>
</div>
<a href="<?php echo $list[$i]['href'] ?>" class="lt_view_btn">자세히</a>
</div><!-- tab2_left -->
</li>
<?php } ?>
<?php if (count($list) == 0) { //게시물이 없을 때 ?>
<li class="empty_li">게시물이 없습니다.</li>
<?php } ?>
</ul>
<!--a href="<?php echo G5_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>" class="lt_more"><span class="sound_only"><?php echo $bo_subject ?></span><i class="fa fa-plus" aria-hidden="true"></i><span class="sound_only"> 더보기</span></a-->
</div>
</div>
위에는 라테스트 페이지 전문인데
그누보드를 새로 깔아서 코드를 복붙해봐도 해결이 안되네요...ㅠ
도와주세요
답변 3
/lib/latest.lib.php 의
$sql = " select * from {$tmp_write_table} where wr_is_comment = 0 order by wr_num limit 0, {$rows} ";
라인을 찾아
'order by wr_num' 부분을 'order by wr_id desc' 로 변경해보면 어떨까 싶습니다.
해당 내용만으론 알 수 없습니다.
쿼리 문제이거나 db 데이터 자체의 문제인듯 한데 올려주신 부분은 쿼리를 가져와서 출력하는 부분입니다.
lib/latest.lib.php 부분이나 db를 확인하셔야 합니다
config.php파일에서 캐쉬저장을 false 해보세요