一.使用wordpress的后臺功能關(guān)閉文章評論
網(wǎng)站的建設(shè)創(chuàng)新互聯(lián)專注網(wǎng)站定制,經(jīng)驗豐富,不做模板,主營網(wǎng)站定制開發(fā).小程序定制開發(fā),H5頁面制作!給你煥然一新的設(shè)計體驗!已為成都iso認(rèn)證等企業(yè)提供專業(yè)服務(wù)。
依次進(jìn)入"后臺"—"設(shè)置"—"討論",會出現(xiàn)下圖所示設(shè)置頁面:
主要就是上圖中的兩個選項了,如果想關(guān)閉全站評論就把那個自動關(guān)閉發(fā)布**天以后的文章評論,并把時間設(shè)置為0并打上勾。如果想關(guān)閉最新文章的評論就把第一個勾去掉。
二.用SQL語句關(guān)閉文章評論功能
這個方法是在一個百度空間上找到的,試了一次,效果也不錯,具體步驟如下:
1、登錄到空間并登錄到phpmyadmin數(shù)據(jù)庫控制版面。
2、在左側(cè)下拉菜單找到WordPress數(shù)據(jù)庫,并點擊進(jìn)入SQL語句執(zhí)行面板。
3,在SQL語句執(zhí)行框中輸入以下代碼:
UPDATE wp_posts p SET comment_status = 'closed', ping_status = 'closed' WHERE comment_status = 'open';
執(zhí)行效果如下圖所示:
注意:如果WordPress數(shù)據(jù)庫前綴不是wp那么請修改wp_posts為前綴_posts,執(zhí)行語句,就可以關(guān)閉WordPress評論功能了。
再回到數(shù)據(jù)庫中的評論項,就能看到文章評論功能已經(jīng)關(guān)閉了,如下圖:
1、首先調(diào)出內(nèi)置評論框:文章開啟評論:WordPress。
2、其次主題開發(fā):評論框頁面開啟評論:(注意:如使用的是插件,點快速編輯是沒有“允許評論”可勾選的)在對應(yīng)的地方。
3、最后就可以進(jìn)行設(shè)置評論下載。
用css來調(diào)整你的評論框的樣式吧,以下是你網(wǎng)站評論框所在DIV , 你改一下form的樣式左對齊看看。
div id="respond"
h3發(fā)表評論/h3
div id="cancel-comment-reply"
smalla rel="nofollow" id="cancel-comment-reply-link" href="/?p=30#respond" style="display:none;"點擊這里取消回復(fù)。/a/small
/div
form action="" method="post" id="commentform"
pinput type="text" name="author" id="author" value="" size="22" tabindex="1" aria-required='true' /
label for="author"small姓名 (必填)/small/label/p
pinput type="text" name="email" id="email" value="" size="22" tabindex="2" aria-required='true' /
label for="email"small電子郵件 (不會被公開) (必填)/small/label/p
pinput type="text" name="url" id="url" value="" size="22" tabindex="3" /
label for="url"small站點/small/label/p
!--psmallstrongXHTML:/strong您可使用下列標(biāo)簽:codea href="" title="" abbr title="" acronym title="" b blockquote cite="" cite code del datetime="" em i q cite="" strike strong /code/small/p--
ptextarea name="comment" id="comment" cols="58" rows="10" tabindex="4"/textarea/p
pinput name="submit" type="submit" id="submit" tabindex="5" value="發(fā)表評論" /
input type='hidden' name='comment_post_ID' value='30' id='comment_post_ID' /
input type='hidden' name='comment_parent' id='comment_parent' value='0' /
/p
p style="display: none;"input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="cd0ca835cc" //p
/form
/div