详情页

帝国cms内容页模板收藏功能

时间:2023年07月10日

编辑:佚名

帝国cms内容页面增加收藏功能
收藏链接:
<a href="[!--news.url--]e/member/fava/add/?classid=[!--classid--]&id=[!--id--]" target="_blank">放入收藏夹</a>
拓展:列表页、内容页调用收藏数量的方法
列表页及内容页,是没有收藏数量调用标签的,但可以使用PHP代码就能调用出来。
列表页:
$scs=$empire->gettotal("select count(*) as total from phome_enewsfava where id='$r[id]' and classid='$r[classid]'");
$listtemp='收藏数:'.$scs;
内容页:
gettotal("select count(*) as total from phome_enewsfava where id='$navinfor[id]' and classid='$navinfor[classid]'");
相关文章
猜你需要