博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ECSHOP首页调用最新评论
阅读量:5941 次
发布时间:2019-06-19

本文共 1752 字,大约阅读时间需要 5 分钟。

第一步:将下面代码复制,并保存为一个库文件,文件名和保存路径为:

/themes/default/library/index_comments.lbi

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
if
(!function_exists(
"get_comments"
)){
function
get_comments(
$num
)
{
   
$sql
=
'SELECT * FROM '
.
$GLOBALS
[
'ecs'
]->table(
'comment'
) .
            
' WHERE status = 1 AND parent_id = 0 and comment_type=0 '
.
            
' ORDER BY add_time DESC'
;
  
if
(
$num
> 0)
  
{
   
$sql
.=
' LIMIT '
.
$num
;
  
}
  
//echo $sql;
          
  
$res
=
$GLOBALS
[
'db'
]->getAll(
$sql
);
  
$comments
=
array
();
  
foreach
(
$res
AS
$idx
=>
$row
)
  
{
   
$comments
[
$idx
][
'add_time'
]       =
$comments
[
$idx
][
'add_time'
]       = local_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'
,get_comments(10));
// 10条数据
?>
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
>
<!-- 最新评论__Begin -->      
  
<div
class
=
"box_2"
>
   
<h3><span>最新评论</span></h3>
  
<div
class
=
"top10List clearfix"
> ECSHOP模板http:
//www.ecshop520.com
  
<!--{
foreach
from=
$my_comments
item=comments}-->
      
<ul
class
=
"clearfix"
>     
      
<li style=
"padding:5px 10px;"
>
<a href=
"goods.php?id={$comments.id_value}"
target=
"_blank"
>
{
$comments
.content|truncate:21:
""
}</a><br />
{
$comments
.add_time}
</li>
</ul>
  
<!--{/
foreach
}-->
      
</div>
  
</div>

第二步:在ECSHOP首页模板文件中,调用这个库文件

打开 themes/default/index.dwt 文件,

1
2
</
div
>
  
<!--left end-->

上面增加一行调用代码

1
<!-- #BeginLibraryItem
"/library/index_comments.lbi"
-->  <!-- #EndLibraryItem -->

清除一下缓存

转载于:https://www.cnblogs.com/wpindesign/p/3654912.html

你可能感兴趣的文章
ASP.NET Core的身份认证框架IdentityServer4(4)- 支持的规范
查看>>
(原創) array可以使用reference方式傳進function嗎? (C/C++)
查看>>
STM32F103--(二) GPIO实践
查看>>
关于开源无线路由器的资料
查看>>
Oracle 分页
查看>>
170多个Ionic Framework学习资源(转载)
查看>>
Azure:不能把同一个certificate同时用于Azure Management和RDP
查看>>
Silverlight 控件的验证
查看>>
Directx11教程(15) D3D11管线(4)
查看>>
Microsoft Excel软件打开文件出现文件的格式与文件扩展名指定格式不一致?
查看>>
ios ble 参考
查看>>
[转]Pass a ViewBag instance to a HiddenFor field in Razor
查看>>
linux中注册系统服务—service命令的原理通俗
查看>>
基于托管C++的增删改查及异步回调小程序
查看>>
Oracle DBMS_STATS 包 和 Analyze 命令的区别
查看>>
给Visual Studio 2010中文版添加Windows Phone 7模板
查看>>
linux下基本命令
查看>>
windows server 2008R2 上安装配置freesshd
查看>>
手动删除SVCH0ST.EXE的方法
查看>>
已释放的栈内存
查看>>