ecshop首页调用最新评论并且显示产品图片
ecshop的产品评论,很多电子商务的朋友都希望他能调用在首页,方便在首页显示.这个其实也不是难事,调用产品的评论,同样也可以显示该产品的图片。
1:首先.在index.php中加如一段代码
$comment = $db -> getAll("select c.content,c.add_time,g.goods_thumb,g.goods_id from ".$ecs->table('comment')." c , ".$ecs->table('goods')." g where g.goods_id = c.id_value and c.status = 1 order by c.add_time desc limit 5");
foreach ($comment as $k => $v){
if(file_exists($v['goods_thumb'])){
$comment[$k]['add_time'] = local_date("Y-m-d H:i:s",$v['add_time']);
}
$comment[$k]['content'] = sub_str($comment[$k]['content'],15);
}
$smarty -> assign('comment', $comment);
2:在模板中,显示这个comment数组。
最货更新缓存,这些就可以出的来了。
下一篇: 屏蔽ecshop云提示no_license 上一篇: ecshop二次开发指南
赞 (0)