首页/技术代码/ wordpress隐藏部分文章内容登陆可见代码

wordpress隐藏部分文章内容登陆可见代码

作者:神奇   分类:技术代码   时间:2019-03-30 00:45:08  标签:


论坛程序常用的功能,对帖子部分内容进行隐藏,访客注册登陆/会员登陆才可以看见,该功能对于开放会员注册的wordpress站点非常有用,可以有效诱导访客注册登陆,增加网站的会员数量,当然前提是网站发布的内容有吸引访客注册的欲望,往往优秀而稀有的资源最能吸引人。对于wordpress网站,可以通过WP短码的形式实现隐藏内容登陆可见的效果。

方法一

在functions.php文件添加以下代码:

add_shortcode('hide','loginvisible');
function loginvisible($atts,$content=null){
	if(is_user_logged_in() && !is_null($content) && !is_feed())
	return $content;
	return '';
}
编辑文章时,使用短码包围要隐藏的内容,如:

此处内容已隐藏,回复可见
方式二
通过本文章的代码可以实现隐藏WordPress部分内容,让用户评论可见,如果你设置, 登陆用户才可以评论,还可以达到用户登陆后评论可见的效果。

将下面的代码添加到主题的 functions.php 文件:
//部分内容评论可见
function reply_to_read($atts, $content=null) {
extract(shortcode_atts(array("notice" => '<p class="reply-to-read">温馨提示: 此处内容需要<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 = "admin@ymjihe.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');
注:请自行修改第8行的邮件为管理员的。如果你的网站使用了ajax免刷新提交评论,你可能需要修改第2行的提示文字,提示访客评论后刷新页面来查看隐藏内容。


调用方法
编辑文章时,使用下面的两种简码调用:
//简码1  任选一种使用
[reply]评论可见的内容[/reply]
//简码2  任选一种使用
[reply notice="自定义的提示信息"]评论可见的内容[/reply]

温馨提示如有转载或引用以上内容之必要,敬请将本文链接作为出处标注,谢谢合作!

评论:

游客1611722792 2021-01-27 12:51:00
惹我

发表评论:

code