感谢仙踪小栈分享(转自仙踪小栈)之前分享过有这么一个WordPress插件,关注公众号并回复关键字获取验证码后,才能查看到文章中的隐藏内容。一直没有找到这个代码版的,前几天想起了这个功能,于是今天便找到了这个分享给大家。
一、核心代码
将以下代码放入functions.php中(具体效果请前往:传送门):
/**
* WordPress文章部分内容关注微信公众号后可见 – 龙笑天下
* http://www.ilxtx.com/view-contents-by-following-wechat-official-accounts.html
*/
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 ‘
’;
} else {
return
‘
验证码:
’;
}
}
add_shortcode(‘gzh2v’, ‘lxtx_secret_content’);
PS:注意修改代码中的相关内容!
二、前端CSS样式
将以下代码放到你主题的style.css文件中:
.post_hide_box, .secret-password{background: none repeat scroll 0 0 #efe;border-left: 5px solid #e74c3c;color: #555;padding: 10px 0 10px 10px;border-radius: 5px;margin-bottom: 15px;overflow:hidden; clear:both;}
.post_hide_box .post-secret{font-size: 18px; line-height:20px; color:#e74c3c; margin:5px;}
.post_hide_box form{ margin:15px 0;}
.post_hide_box form span{ font-size:18px; font-weight:700;}
.post_hide_box .erweima{ margin-left:20px; margin-right:16px;}
.post_hide_box input[type=password]{ color: #9ba1a8; padding: 6px; background-color: #f6f6f6; border: 1px solid #e4e6e8; font-size: 12px;-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: #F88C00; border: none; border: 2px solid;border-color: #F88C00; border-left: none; border-top: none; padding: 0px;width: 100px; height: 38px; color: #fff; outline: 0;border-radius: 0 0 2px 0; font-size: 16px;}
.post_hide_box .details span{color:#e74c3c;}
三、集成短代码
为了方便使用,在后台文本编辑器中集成该短代码。将以下代码放入 functions.php 中即可:
// 后台文本编辑框中添加公众号隐藏简码按钮
function lxtx_wpsites_add_gzh_quicktags() {
if (wp_script_is(‘quicktags’)){
?>
<?php
}
}
add_action( ‘admin_print_footer_scripts’, ‘lxtx_wpsites_add_gzh_quicktags’ );
四、使用方法
4.1 在文章中使用短代码
插入以下简码,修改相关内容即可:
[gzh2v keyword=“关键字” key=“验证码”]隐藏内容[/gzh2v]
4.2 微信公众号
这里以微信公众号为例(QQ公众号应该也是这样),在微信公众号的“自动回复-关键字自动回复”中设置好关键字(对应上面代码中的keyword)及验证码(对应上面代码中的key)。
五、效果图
六、延伸
其实本文是跟常见的“文章部分内容回复后看见”或“文章部分内容登录后可见”的代码原理一致,只是结合了一下公众号而已。大家可以动动手集成到自己的主题哈!
这个功能先收集到这里,各位小伙伴是否需要使用。这个功能对于公众号吸粉还是不错的。
七、相关链接
必须关注微信公众号才能查看隐藏内容——WordPress插件