這篇教程教大家織夢cms內(nèi)容頁調(diào)用評論數(shù)量的方法,希望對大家有所幫助!
織夢cms內(nèi)容頁調(diào)用評論數(shù)量的方法
1、在織夢程序的plus文件夾新建php文件并命名為feedcount.php,在其中添加代碼:
document.write("共有 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']; }?>位用戶了發(fā)表評論");
2、在要顯示評論總數(shù)的位置添加JS調(diào)用代碼:
<script type="text/javascript" src="{dede:field name='phpurl'/}/feedcount.php?aid={dede:field name='id'/}&mid={dede:field name='mid'/}" type='text/javascript' language="javascript"></script>
這樣就實(shí)現(xiàn)了在織夢cms內(nèi)容頁調(diào)用評論數(shù)量。你學(xué)會(huì)了嗎?