您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)織夢(mèng)DEDECMS調(diào)用文章評(píng)論次數(shù)的方法的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過來看看吧。
織夢(mèng)DEDECMS如何調(diào)用文章評(píng)論次數(shù)?
織夢(mèng)DEDECMS調(diào)用文章評(píng)論次數(shù)
織夢(mèng)DEDECMS要調(diào)用文章的評(píng)論次數(shù),必須要修改數(shù)據(jù)表(dede_archives),添加一個(gè)字段用于存儲(chǔ)這篇文章的評(píng)論次數(shù),然后在調(diào)用這個(gè)字段的值即可。
解決辦法 :
dede_archives 添加postcount int(10) UNSIGNED default 0
然后打開plus\feedback.php 找到大約220左右
//保存評(píng)論內(nèi)容 if($comtype == 'comments') { $arctitle = addslashes($title); if($msg!='') { $inquery = "INSERT INTO `cmsxx_feedback`(`aid`,`typeid`,`username`, `arctitle`,`ip`,`ischeck`,`dtime`, `mid`,`bad`,`good`,`ftype`,`face`,`msg`) VALUES ('$aid','$typeid','$username','$arctitle','$ip','$ischeck','$dtime', '{$cfg_ml->M_ID}','0','0','$feedbacktype','$face','$msg'); "; //插入位置1 $rs = $dsql->ExecuteNoneQuery($inquery); if(!$rs) { echo $dsql->GetError(); exit(); } //插入位置2
插入位置1內(nèi)容:
$rowc = $dsql->GetOne("Select count(*) as count from `dede_feedback` where aid ='$aid'"); $pcount = $rowc ['count']; $inquery2 = "update `dede_archives` set postcount = '$pcount' where id = '$aid'";
插入位置2內(nèi)容:
$rs = $dsql->ExecuteNoneQuery($inquery2); if(!$rs) { echo $dsql->GetError(); exit(); }
感謝各位的閱讀!關(guān)于織夢(mèng)DEDECMS調(diào)用文章評(píng)論次數(shù)的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。