當(dāng)前位置:首頁 >  站長 >  編程技術(shù) >  正文

如何設(shè)置WordPress指定內(nèi)容設(shè)置評論回復(fù)可見

 2021-01-27 16:04  來源: 白天博客   我來投稿 撤稿糾錯

  域名預(yù)訂/競價,好“米”不錯過

為WordPress指定內(nèi)容設(shè)置評論*這個功能經(jīng)常在一些網(wǎng)站上看到,如果用到自己網(wǎng)站是不是很不錯呢,于是也使用過一段時間,但效果并不理想就取消了。

鑒于一些站長朋友可能會需求,本文白天就來給大家分享一下WordPress指定內(nèi)容設(shè)置評論*的方法。

方法很簡單,在當(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');

注:需要將代碼里的郵箱替換為博主自己的以免自己也要評論,保存即可!

接著以后我們在發(fā)布文章的時候,只需添加短代碼即可實(shí)現(xiàn)給指定內(nèi)容設(shè)置*了。代碼如下:

[reply]

評論可見的內(nèi)容

[/reply]

[reply notice="自定義的提示信息"]

評論可見的內(nèi)容

[/reply]

結(jié)語:在用戶運(yùn)營中*其實(shí)是一個比較有爭議的功能,用得好可以為網(wǎng)站帶來更多活躍用戶,用不好則會讓用戶引起反感,甚至用戶會選擇直接關(guān)閉。常見用于論壇,至于白天博客現(xiàn)在不會用后期也不會用,畢竟也違反了自己做博客的初衷。

文章來源:白天博客

來源地址:https://www.seobti.com/2796.html

申請創(chuàng)業(yè)報道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!

相關(guān)文章

熱門排行

信息推薦