首页 > 教程 >

织梦dedecms内容页模板中添加文章评论数

2023-03-07教程围观

简介如何在织梦dedecms内容页模板中添加文章评论数呢?下面我们将讲解具体操作方法第一步:首先在plus目录下,建立一个文件名为:feedcount.php,代码如下:document.write("共有位用户了发表评论");第二步:然后在你的模板中需要显示评论总数的地方,加入以下JS代码:很方便吧如果需要就快去试一下吧下面是第二种方法相对更简单一些{dede:field.idrunphp=&rsq

  
如何在织梦dedecms内容页模板中添加文章评论数呢?
下面我们将讲解具体操作方法
第一步:首先在plus目录下,建立一个文件名为:feedcount.php,代码如下:
document.write("共有<?php
require_once(dirname(__FILE__)."/../include/common.inc.php");
$row = $db->GetOne("select count(*) as fc from dede_feedback where aid=’{$aid}’");
if(!is_array($row)){
echo "0";
}else {
echo $row['fc'];
}
?>位用户了发表评论");
第二步:然后在你的模板中需要显示评论总数的地方,加入以下JS代码:
< type="text/ " src="{dede:field name=’phpurl’/}/feedcount.php?aid={dede:field.2.id/}"></ >
很方便吧 如果需要就快去试一下吧
 下面是第二种方法相对更简单一些
 {dede:field.id runphp=’yes’}$dsql = new dedesql(false);$dsql -> SetQuery("Select count(id) as c from dede_feedback where aid=".@me);$row = $dsql -> getone();@me=$row['c'];{/dede:field.id}个评论

下载链接:网站源码/小程序源码/网站模板下载

Tags: 模板 织梦 文章 添加 内容