首页建站如何实现 Wordpress 文章特定的内容评论回复后可见

如何实现 WordPress 文章特定的内容评论回复后可见

-

最近在查看后台统计数据,跳出率基本在百分之百,伸手党之多,之前考虑为了方便下载,实现弹窗下载,结果···所有SSS考虑登录或者评论回复后可见,这样至少可以消磨一下一些伸手党的可贵时间,这也是SSS在网上找的一段代码,测试可用,所以贴上来···

代码如下:

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;
//对博主直接显示内容
$admin_email = "1397089828@qq.com.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');

只需要将以上代码加入到当前使用的主题的 functions.php 文件里,将代码里的邮箱替换成自己的,保存上传替换!之后我们在编写文章的时候就可以添加短代码来实现wordpress回复可见的功能了!

注意:

注释的博主E-mail的邮箱,改成自己的E-mail,这样就可以设置成对站长不隐藏内容了。

使用方法:

在编辑文章时插入以下代码可隐藏内容···

[reply]被隐藏的内容[/reply]

或者自定义提示消息

[reply notice="回复后才显示"]被隐藏的内容[/reply] 

如果闲麻烦,可在官方后台搜索 easy2hide 插件安装也可以实现内容评论后可见···

easy2hide代码如下:

隐藏内容

easy2hide图:

easy2hide

xyz168
xyz168
我乃芸芸众生自食其力草根一介,喜欢!拜托支持下,不喜欢!欢迎吐槽,同时欢迎你加入一起学习!一起进步!

热门文章

最新资源

最多评论