WordPress文章回复评论才可见内容
目录
在Discuz等论坛经常会看到:”该帖子需要回复后才能看到”,“本链接需要回复才能**”,“如果您要查看本帖隐藏内容请先回复”。
这个功能假如能移植到wordpress是很羡慕的。与Discuz论坛相对而言,Wordpress是很开放的,文章除了密码保护外,文章内容是可以随便查看。
给Wordpress文章增加回复可见,既可防止采集党的肆意转载,保护原创;又可提高互动,增加留言,提高人气等。
1、在 functions.php 中添加下面的代码
- //文章内容回复可见
- add_shortcode(‘reply’, ‘reply_to_read’);
- function reply_to_read($atts, $content=null) {
- extract(shortcode_atts(array(“notice” => ‘<p>温馨提示:此处内容需要<a href=”#respond” title=”评论本文”>评论本文</a>后才能查看。</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 = “server-c@qq.com”; //<span style=”color: #0000ff;”>博主Email</span>
- 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;
- }
- }
其中,博主的EMail设置自己的(上面红色标注),博主可以不用回复就可见。
2、在 style.css 中添加上面代码的显示效果
非必需的,可以不添加,这是CSS样式,可以自己定制样式。。。
- .reply–to–read{
- background: #CCCCCC;
- color: #000000;
- font–family: “Microsoft YaHei”,“微软雅黑”,“幼圆”,“宋体”,“楷体”,“楷体_GB2312”;
- font–size: 16px;
- font–weight:bold;
- font–style: normal;
- margin:0;
- padding: 10px 20px;
- line–height: normal;
- }
3、代码使用方法
将需要隐藏的内容用[reple]包裹,编辑文章时,添加:
- [reply]你希望评论回复可见的内容[/reply]
或
- [reply notice=”自定义提醒回复内容”]自定义提醒回复内容[/reply]
效果跟你看到的论坛的一样,只是样式可以自己用css定义(步骤2)。
送福利了!关注下方的公众号:“优派编程”,搜索关键词“下载”,即可获得软件app下载资源和python、java等编程学习资料~
更多课程和学习资料请登录“方包博客”———http://fang1688.cn
更多资源请关注公众号或点击下方“阅读原文”,回复关键词获取
感谢分享,谢谢站长!!@天天下载