下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。内存溢出小编现在分享给大家,也给大家做个参考。
很早之前就有人分享过有这么一个 wordpress 插件,关注公众号并回复关键字获取验证码后,才能查看到文章中的隐藏内容。一直没有找到这个代码版的,前几天想起了这个功能,于是今天便找到了这个分享给大家。
核心代码:
/**
* 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 '<div >'.$content.'</div>';
} else {
return
'<div >
<img align="right" src="改为二维码图片的网址" wIDth="150" height="150" alt="你的二维码名字"><div ><i ></i>此处内容已经被作者无情的隐藏,请输入验证码查看内容</div>
<form action="'.get_permalink().'" method="post">
<span>验证码:</span><input ID="pwBox" type="password" size="20" name="secret_key">
<a href="JavaScript:;"><input type="submit" value="提交" name="submit"></a>
</form>
<div >请关注“你的名字”官方QQ公众号,回复关键字“<span>'.$keyword.'</span>”,获取验证码。【注】用手机QQ扫描右侧二维码都可以关注“你的名字”官方QQ公众号。</div>
</div>';
}
}
add_shortcode('gzh2v','lxtx_secret_content');
PS:注意修改代码中的相关内容!
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,background-color .25s linear;
-o-Transition: border .25s linear,background-color .25s linear;
Transition: border .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')){
?>
<script type="text/JavaScript">
QTags.addbutton( 'gzh2v',' 公众号隐藏','n[gzh2v keyword="关键字" key="验证码"]隐藏内容[/gzh2v]',"" );
</script>
<?PHP
}
}
add_action( 'admin_print_footer_scripts','lxtx_wpsites_add_gzh_quickTags' );
使用方法:
在文章中插入以下简码,修改相关内容即可:
[gzh2v keyword="关键字" key="验证码"]隐藏内容[/gzh2v]
微信公众号:
这里以微信公众号为例(QQ 公众号应该也是这样),在微信公众号的“自动回复-关键字自动回复”中设置好关键字(对应上面代码中的 keyword)及验证码(对应上面代码中的 key)。
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的纯代码WordPress内容微信关注后可见全部内容,希望文章能够帮你解决纯代码WordPress内容微信关注后可见所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)