為WordPress指定內(nèi)容設(shè)置評(píng)論*這個(gè)功能經(jīng)常在一些網(wǎng)站上看到,如果用到自己網(wǎng)站是不是很不錯(cuò)呢,于是也使用過一段時(shí)間,但效果并不理想就取消了。
鑒于一些站長朋友可能會(huì)需求,本文白天就來給大家分享一下WordPress指定內(nèi)容設(shè)置評(píng)論*的方法。
方法很簡單,在當(dāng)前網(wǎng)站主題下的functions.php文件內(nèi)加入以下代碼:
function reply_to_read($atts, $content=null) {
extract(shortcode_atts(array("notice" => '
'), $atts));
$email = null;
$user_ID = (int) wp_get_current_user()->ID;
if ($user_ID > 0) {
$email = get_userdata($user_ID)->user_email;
//對博主直接顯示內(nèi)容
$admin_email = "xxx@xxx.com"; //博主Email
if ($email == $admin_email) {
return $content;
}
} else if (isset($_COOKIE['comment_author_email_' . COOKIEHASH])) {
$email = str_replace('%40', '@', $_COOKIE['comment_author_email_' . COOKIEHASH]);
} else {
return $notice;
}
if (empty($email)) {
return $notice;
}
global $wpdb;
$post_id = get_the_ID();
$query = "SELECT `comment_ID` FROM {$wpdb->comments} WHERE `comment_post_ID`={$post_id} and `comment_approved`='1' and `comment_author_email`='{$email}' LIMIT 1";
if ($wpdb->get_results($query)) {
return do_shortcode($content);
} else {
return $notice;
}
}
add_shortcode('reply', 'reply_to_read');
注:需要將代碼里的郵箱替換為博主自己的以免自己也要評(píng)論,保存即可!
接著以后我們在發(fā)布文章的時(shí)候,只需添加短代碼即可實(shí)現(xiàn)給指定內(nèi)容設(shè)置*了。代碼如下:
[reply]
評(píng)論可見的內(nèi)容
[/reply]
或
[reply notice="自定義的提示信息"]
評(píng)論可見的內(nèi)容
[/reply]
結(jié)語:在用戶運(yùn)營中*其實(shí)是一個(gè)比較有爭議的功能,用得好可以為網(wǎng)站帶來更多活躍用戶,用不好則會(huì)讓用戶引起反感,甚至用戶會(huì)選擇直接關(guān)閉。常見用于論壇,至于白天博客現(xiàn)在不會(huì)用后期也不會(huì)用,畢竟也違反了自己做博客的初衷。
文章來源:白天博客
來源地址:https://www.seobti.com/2796.html
申請創(chuàng)業(yè)報(bào)道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!