팁자료실에 '상단메뉴 게시판별 새글 이미지 출력'
본문
팁자료실 글 링크
http://sir.co.kr/g5_tip/1084?sfl=wr_subject%7C%7Cwr_content&stx=%EC%83%88%EA%B8%80#c_3482
팁자료실의 '상단메뉴 게시판별 새글 이미지 출력' 글에 나와있는 쿼리입니다. 여기서 날짜를 나타내는 부분이 어딘가요? 그리고 어제부터 오늘까지 하루동안 새글로 지정한 경우 어떻게 수정해야할까요?
그리고 팁글에 head.php 에 넣으라고 되어있는데 theme사용하고 있는경우라면 테마 폴더 안의 head.php를 수정하는것이 맞나요?
mint 테마 사용중인데 theme/mint/mobile/head.php에서
글에 나와있는대로 수정해보니 페이지 오류만 납니다ㅠㅠ
function tto_new_icon($bo_table) { global $g5; $temp = sql_fetch("select bo_new from {$g5['board_table']} where bo_table = '$bo_table'"); $time_set = date("Y-m-d H:i:s", time() - $temp[bo_new] * 60 * 60); $row = sql_fetch("select wr_id as cnt from {$g5['write_prefix']}$bo_table where wr_is_comment = '0' and wr_datetime > '$time_set'"); if($row[cnt]) echo " "; // 사용 이미지에 맞게 경로.파일 수정 }
답변 1
<?php
if (!defined('_GNUBOARD_')) exit;
// 상단 메뉴 게시판별 새글 이미지 출력
function tto_new_icon($bo_table) {
global $g5;
$temp = sql_fetch("select bo_new from {$g5['board_table']} where bo_table = '$bo_table'");
$time_set = date("Y-m-d H:i:s", time() - $temp[bo_new] * 60 * 60);
$row = sql_fetch("select wr_id as cnt from {$g5['write_prefix']}$bo_table where wr_is_comment = '0' and wr_datetime > '$time_set'");
if($row[cnt])
echo " <img src='$g5[path]/img/icon_new.gif' alt='' />"; // 사용 이미지에 맞게 경로.파일 수정
}
?>
이렇게 입력하니 오류는 발생하지 않습니다.
메뉴 출력방식이 예전과 달라서 수정해야 할 듯 한데... 까막눈이라...;;;
!-->