DedeCMS织梦调用文章内容页评论数的方法

1、在织梦程序的plus文件夹新建php文件并命名为feedcount.php,在其中添加代码:

1
2
3
4
5
6
7
8
9
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'];
	}
?>位用户了发表评论");

2、在要显示评论总数的位置添加JS调用代码:

1
<script type="text/javascript" src="{dede:field name='phpurl'/}/feedcount.php?aid={dede:field.id/}"></script>

3、保存文件即可。

原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/247876.html

(0)
上一篇 2022年4月22日
下一篇 2022年4月22日

相关推荐

发表回复

登录后才能评论