织梦列表页和文章页怎么调用评论数和收藏数

织梦DEDECMS列表页和文章页调用评论数和收藏数 1.文章页调用评论数 {dede:field.id runphp=yes}global $dsql;$dsql - SetQuery(Select count(id) as c from wmd_feedback where aid=.@me);$row = $dsql - getone();@me=$row[c];{/

织梦DEDECMS列表页和文章页调用评论数和收藏数
 
1.文章页调用评论数
 
{dede:field.id runphp='yes'}global $dsql;$dsql -> SetQuery("Select count(id) as c from wmd_feedback where aid=".@me);$row = $dsql -> getone();@me=$row['c'];{/dede:field.id}个评论
 
2.文章页调用收藏数
 
被收藏:{dede:field.id runphp='yes'}global $dsql;$dsql -> SetQuery("select count(*) as c from wmd_member_stow where aid=".@me);$row = $dsql -> getone();@me=$row['c'];{/dede:field.id}次
 
3.列表页调用评论数
 
[field:ID runphp='yes']global $dsql;$dsql -> SetQuery("Select count(id) as c from wmd_feedback where aid=".@me);$row = $dsql -> getone();@me=$row['c'];[/field:ID]个评论
 
4.列表页调用收藏数
 
被收藏:[field:ID runphp='yes']global $dsql;$dsql -> SetQuery("select count(*) as c from wmd_member_stow where aid=".@me);$row = $dsql -> getone();@me=$row['c'];[/field:ID]次

织梦列表页和文章页怎么调用评论数和收藏数

最新VIP资源