让你的WordPress具有回复可见功能(即发表评论后可见)

转自点点 12 年前 回复

, , ,

首先把下面的代码摔进functions.php里(嘿嘿,顺便试试这个功能)

//回复可见功能
function reply_to_read($atts, $content=null) {
        extract(shortcode_atts(array("notice" => '<p>温馨提示: 此处内容需要评论本文后才能查看.</p>'), $atts));
        $email = null;
        $user_ID = (int) wp_get_current_user()->ID;
     
        if ($user_ID > 0) {
            $email = get_userdata($user_ID)->user_email;
     
            //对博主直接显示内容
            $admin_email = get_bloginfo ('admin_email'); //博主Email,可以改成你指定的,比如"i@hjyl.org"
            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');

css样式参考:

#reply_to_read{padding:5px;border:1px dashed #E52D41;border-radius:5px;}

使用方法也很简单,发表新日志的时候把你要隐藏的内容放在reply标签之间,即:

[reply]你要隐藏的内容[/reply]

如果你要自定义提示信息,使用方法如下

[reply notice="为了你我他,发表评论吧!"]你要隐藏的内容[/reply]

是不是很简单,感谢“微代码”博主的分享,请尊重原作者版权……如有问题,请留言,谢谢
转自:原文

支付宝打赏微信打赏

如果此文对你有帮助,欢迎打赏作者。

发表评论

欢迎回来 (打开)

(必填)