그냥 단계를 적어보고 아이디어를 볼게요, 다들 이해하실 거라 믿습니다
1단계:
includes/lib_goods.php에서 사용자 정의 함수 구축
/**
* 최근 댓글 받기
*
* @return 배열
*/
함수 get_latest_comment($limit_num)
{
$sql = "SELECT c.content,c.add_time,g.goods_id,g.goods_name FROM ".$GLOBALS['ecs']->table('comment')." AS c
LEFT JOIN ".$GLOBALS['ecs']->table('goods')." AS g on c.id_value=g.goods_id
여기서 c.status=1
LIMIT ".$limit_num;
$res = $GLOBALS['db']->getAll($sql);
$res 반환;
}
2단계:
$smarty->할당('goods_rank', get_goods_rank($goods_id));
아래에 다음 코드를 추가하세요
$smarty->할당('comments_latest', get_latest_comment(10)); //최신 리뷰 받기
3단계:
라이브러리 디렉토리에 comments_latest.lbi 파일을 생성하세요
4단계:
상품 세부정보 페이지에서 "최신 댓글"을 호출하려면 템플릿 파일 상품.dwt에서 다음 코드를 사용하세요