Home  >  Article  >  CMS Tutorial  >  How does DedeCMS call the number of comments on the article content page?

How does DedeCMS call the number of comments on the article content page?

藏色散人
藏色散人Original
2019-12-03 09:23:042274browse

How does DedeCMS call the number of comments on the article content page?

How does DedeCMS call the number of comments on the article content page?

Number of comments on the article content page called by DedeCMS directory, create a file named: feedcount.php, the code is as follows:

document.write("共有<?php
require_once(dirname(__FILE__)."/../include/common.inc.php");
$row = $db->GetOne("select count(*) as fc from dede_feedback where aid=&#39;{$aid}&#39;");
if(!is_array($row)){
echo "0";
}else {
echo $row[&#39;fc&#39;];
}
?>位用户了发表评论");

Step 2: Then add the following JS code to your template where you need to display the total number of comments:

 <script type="text/javascript" src="{dede:field name=&#39;phpurl&#39;/}/feedcount.php?aid={dede:field.id/}"></script>

The above is the detailed content of How does DedeCMS call the number of comments on the article content page?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn