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?
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='{$aid}'"); if(!is_array($row)){ echo "0"; }else { echo $row['fc']; } ?>位用户了发表评论");
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='phpurl'/}/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!