方法一:插件实现评论后可见功能
easy2hide插件是一个回复可见的插件。你可以把解压密码、下载地址等的内容隐藏在评论中(隐藏在评论中,这里楚狂人不太懂,是说发表文章后,自己先评论一下,然后把内容隐藏在这个评论中的意思么?)。只有回复后才能够浏览被隐藏起来的内容,需要注意的是只有在评论审核后才能算是评论了一条内容,这个办法暂时没有测试,有时间再测试了把步骤分享出来。
方法二:代码实现评论后可见功能
代码实现方式是我非常喜欢的,对我来说能不装插件就尽量不装插件
在functions.php添加以下代码:
function reply_to_read($atts, $content=null) {
extract(shortcode_atts(array("notice" => '<p class="reply-to-read" style="border-width: 1px 1px 1px 1px;border-color: #F2F2F2;line-height: 150%;"><blockquote><font color="#ff0000"><b>温馨提示</b></font>: 隐藏内容需要<a href="#respond" title="点击进行评论"> 回复评论 </a>后才能查看, 评论后请 <strong><a href="javascript:location.reload()" title="点击刷新"> 刷新 !</a></strong>.</blockquote></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 = "admin@tianyanjie.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');
具体用法:发表文章的时候,在需要回复可见的内容添加下面的代码:
效果如下:
[reply]新版[/reply]
评论前必须登录!
注册