WordPress部分內(nèi)容,讓用戶評(píng)論可見,如果你設(shè)置, 登陸用戶才可以評(píng)論,還可以達(dá)到用戶登陸后評(píng)論可見的效果。那么WordPress網(wǎng)站如何實(shí)現(xiàn)評(píng)論后可見隱藏部分內(nèi)容?
創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),天峻企業(yè)網(wǎng)站建設(shè),天峻品牌網(wǎng)站建設(shè),網(wǎng)站定制,天峻網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,天峻網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
將下面的代碼添加到主題的 functions.php 文件:
//部分內(nèi)容評(píng)論可見
function reply_to_read($atts, $content=null) {
?extract(shortcode_atts(array("notice" = 'p class="reply-to-read"溫馨提示: 此處內(nèi)容需要a href="" title="評(píng)論本文"評(píng)論本文/a后才能查看./p'), $atts));
?$email = null;
?$user_ID = (int) wp_get_current_user()-ID;
?if ($user_ID 0) {
? ? ?$email = get_userdata($user_ID)-user_email;
? ? ?//對(duì)站長直接顯示內(nèi)容 ?
? ? ?$admin_email = "admin@ymjihe點(diǎn)抗 "; //站長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');
下載第一個(gè)就可以了,上傳到你的網(wǎng)絡(luò)空間,在你的mysql數(shù)據(jù)庫里添加一個(gè)數(shù)據(jù)庫,記住這個(gè)數(shù)據(jù)庫的名字和密碼。然后按照幫助文件的說明,用瀏覽器輸入你自己的網(wǎng)址+install.php,就可以安裝了。wordpress安裝是比較容易的,而且網(wǎng)上有很多關(guān)于wordpress的專業(yè)的論壇、博客,如果安裝遇到問題,可以搜索這些博客,很快就會(huì)找到答案,而且還會(huì)在這些網(wǎng)址學(xué)到不少wordprsss的技巧。
CP建站有點(diǎn)摸不著頭腦,wordpress本身問題不大,而且還非常好用呢。復(fù)制去Google翻譯翻譯結(jié)果