代码实现WordPress文章部分内容评论或回复后可见

这是关于WordPress如何实现一些需要登录才能查看的文章内容。今天,我们将为您带来一个WordPress功能,它可以在文章内容审查/回复之后看到。这个功能容易实现,可以提高用户的积极性,是一个很好的功能。

将下面代码添加到主题的functions.php里

//WordPress实现文章部分内容评论后可见
function reply_to_read($atts, $content=null) {   
      extract(shortcode_atts(array("notice" => '<p class="reply-to-read">温馨提示: 此处内容需要<a href="#respond" rel="external nofollow"  rel="external nofollow"  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 = "leixue@leiue.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');

然后在编辑文章时添加下面两种方式的其中一种即可隐藏文章部分内容。

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

WordPress教程 实现wordpress博客蜘蛛爬行记录统计

2020-4-19 16:45:59

WordPress教程

WordPress在文章列表中显示评论

2020-5-2 18:07:48

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索