织梦调用列表页、文章页评论数和收藏数代码
下面代码可以根据自己需要,在列表页或文章页显示被评论次数和收藏次数。
文章页调用评论数
{dede:field.id runphp=’yes’}
global $dsql;
$dsql -> SetQuery(“Select count(id) as c from dede_feedback where aid=”.@me);
$row = $dsql -> getone();@me=$row[‘c’];
{/dede:field.id}个评论
文章页调用收藏数
{dede:field.id runphp=’yes’}
global $dsql;
$dsql -> SetQuery(“select count(*) as c from dede_member_stow where aid=”.@me);
$row = $dsql -> getone();@me=$row[‘c’];
{/dede:field.id}次
列表页调用评论数
[field:ID runphp=’yes’]
global $dsql;
$dsql -> SetQuery(“Select count(id) as c from dede_feedback where aid=”.@me);
$row = $dsql -> getone();@me=$row[‘c’];
[/field:ID]
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦调用列表页、文章页评论数和收藏数代码
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦调用列表页、文章页评论数和收藏数代码