POST TIME:2020-04-04 15:24
調(diào)用織夢全站評論總數(shù)其實很簡單,比如用制作dedecms模板時可以用該方法調(diào)用評論總數(shù),本文給大家介紹一個簡單的方法,使用JS調(diào)用評論,而且可以使用到dedecms模板中的任何地方!
第一步:首先在plus目錄下,建立一個名為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 "); if(!is_array($row)){ echo "0"; }else { echo $row['fc']; } ?>條評論內(nèi)容!"); |
第二步:然后在你的模板中需要顯示評論總數(shù)的地方,加入以下JS代碼:
<script type="text/javascript" src="{dede:field name='phpurl'/}/feedcount.php?aid={dede:field.id/}"></script>
|