欢迎来到天天文库
浏览记录
ID:40642900
大小:55.50 KB
页数:2页
时间:2019-08-05
《在Ecshop首页上显示最新评论(评论内容&时间)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、在Ecshop首页上显示最新评论(评论内容&时间)本教程以“ECSHOP2.7.2+官方默认模板”为例,其他模板大同小异,效果图如下:第一步:将下面代码复制,并保存为一个库文件,文件名和保存路径为:/themes/default/library/index_comments.lbitable('com
2、ment').'WHEREstatus=1ANDparent_id=0andcomment_type=0'.'ORDERBYadd_timeDESC';if($num>0){$sql.='LIMIT'.$num;}//echo$sql;$res=$GLOBALS['db']->getAll($sql);$comments=array();foreach($resAS$idx=>$row){$comments[$idx]['add_time']=$comments[$idx]['add_time']=loc
3、al_date($GLOBALS['_CFG']['time_format'],$row['add_time']);$comments[$idx]['user_name']=$row['user_name'];$comments[$idx]['content']=$row['content'];$comments[$idx]['id_value']=$row['id_value'];}return$comments;}}$GLOBALS['smarty']->assign('my_comments',ge
4、t_comments(10));//10条数据?>最新评论5、="padding:5px10px;">{$comments.contenttruncate:21:""}{$comments.add_time}
5、="padding:5px10px;">{$comments.contenttruncate:21:""}{$comments.add_time}
6、上面增加一行调用代码清除一下缓存
此文档下载收益归作者所有