WordPress免插件开启公众号回复验证码查看隐藏内容功能 提供两个CSS样式

一直想找一款微信公众号回复验证码的插件,奈何 wechat-fans 插件不够人性化,只能设置一个验证码,所以就整合了一些大佬的文章,得出以下代码。

WordPress免插件开启公众号回复验证码查看隐藏内容功能

在 functions.php 文件中加入以下代码 这个代码必须用 UTF-8-BOM 编码格式 修改中文,不然直接用主题编辑器修改会错位!!

/**
     * WordPress文章部分内容关注微信公众号后可见 
     */
    function lxtx_secret_content($atts, $content=null){
     extract(shortcode_atts(array('key'=>null,'keyword'=>null), $atts));
     if(isset($_POST['secret_key']) && $_POST['secret_key']==$key){
     return '
'.$content.'
'; } else { return '
南巷左岸
此处内容已经被隐藏,请输入验证码查看内容
验证码:
请关注 “南巷左岸” 官方微信公众号,回复关键字“'.$keyword.'”,获取验证码。
'; } } add_shortcode('gzh2v', 'lxtx_secret_content'); // 为了方便使用,在后台文本编辑器中集成该短代码。将以下代码放入 functions.php 中即可: function lxtx_wpsites_add_gzh_quicktags() { if (wp_script_is('quicktags')){ ?>

CSS样式文件修改

将下面的代码添加到主题的 style.css 文件中去即可,如果放进 style.css 里边无效的话,可以放进 外观——自定义——额外css 里边

第一款:

CSS代码隐藏起来了,正好可以让大家试试效果

https://www.pangdax.cn/935.html

第二款:

WordPress免插件开启公众号回复验证码查看隐藏内容功能 提供两个CSS样式_第1张图片
css代码如下:

.post_hide_box, .secret-password{
	background: none repeat scroll 0 0 #fcffff;
	border: 1px dashed #24b4f0;
	color: #123456;
	padding: 10px;
	border-radius: 9px;
	margin: 18px 0px;
	overflow:hidden;
	clear:both;
	}
.post_hide_box .post-secret{
	font-size: 18px;
	line-height:20px; 
	color:#24b4f0; 
	margin:5px;
	}
.post_hide_box form{ margin:15px 5px;}
.post_hide_box form span{ font-size:18px; font-weight:bold;}
.post_hide_box .erweima{ margin: 15px;}
.post_hide_box input[type=password]{
	color: #00a0f0;
	background-color: #fff;
	border: 1px solid #24b4f0;
	border-radius: 4px;
	font-size: 12px;
	margin: 0px 5px;
	width: 200px;
	-moz-transition: border .25s linear,color .25s linear,background-color .25s linear; 
	-webkit-transition: border .25s linear,color .25s linear,background-color .25s linear; -o-transition: border .25s linear,color .25s linear,background-color .25s linear; 
	transition: border .25s linear,color .25s linear,background-color .25s linear;}
.post_hide_box input[type=submit] { 
    background: #24b4f0;
    border: none;
    padding: 12px;
    width: 88px;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
	}
.details{
	color:#123456;
    font-size: 13px;
	line-height: 30px;
	margin: 5px;
	padding: 3px;
	}
.post_hide_box .details span{color:#e74c3c;}


之后再写文章时,文本——点击公众号隐藏 按钮,将信息修改就行了

WordPress免插件开启公众号回复验证码查看隐藏内容功能 提供两个CSS样式_第2张图片

你可能感兴趣的:(wordpress教程)