WordPress美化: 文章部分内容关注微信公众号后可见

云墨
云墨
云墨
647
文章
0
评论
2018年8月29日 评论 1,175

WordPress美化: 文章部分内容关注微信公众号后可见

WordPress美化: 文章部分内容关注微信公众号后可见

很早之前就知道有这么一个功能,只有关注公众号并回复关键字获取验证码后,才能查看到文章中的隐藏内容。但一直没想好怎么用,今天就把它拿起来使用下吧~

当然,这个功能是可以通过插件来实现的,但本人是喜欢代码版的;所以直接上代码了!

1 核心代码

将以下代码放入 functions.php 中(PS:为了做个 DEMO,代码被我隐藏起来了~):

  1. /**
  2.  * WordPress文章部分内容关注微信公众号后可见 - 龙笑天下
  3.  * https://www.ilxtx.com/view-contents-by-following-wechat-official-accounts.html
  4.  */
  5. function lxtx_secret_content($atts, $content=null){
  6.     extract(shortcode_atts(array('key'=>null,'keyword'=>null), $atts));
  7.     if(isset($_POST['secret_key']) && $_POST['secret_key']==$key){
  8.         return '<div class="secret-password">'.$content.'</div>';
  9.     } else {
  10.         return
  11.             '<div class="post_hide_box">
  12.              <img class="erweima" align="right" src="改为二维码图片的网址" width="150" height="150" alt="你的二维码名字"><div class="post-secret"><i class="fa fa-exclamation-circle"></i>此处内容已经被作者无情的隐藏,请输入验证码查看内容</div>
  13.              <form action="'.get_permalink().'" method="post">
  14.              <span>验证码:</span><input id="pwbox" type="password" size="20" name="secret_key">
  15.              <a class="a2" href="javascript:;"><input type="submit" value="提交" name="Submit"></a>
  16.              </form>
  17.              <div class="details">请关注“你的名字”官方QQ公众号,回复关键字“<span>'.$keyword.'</span>”,获取验证码。【注】用手机QQ扫描右侧二维码都可以关注“你的名字”官方QQ公众号。</div>
  18.              </div>';
  19.     }
  20. }
  21. add_shortcode('gzh2v', 'lxtx_secret_content');

注意修改代码中的相关内容!

2 前端 CSS 样式

将以下代码放到你主题的 style.css 文件中:

  1. .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;}
  2. .post_hide_box .post-secret{font-size: 18px; line-height:20px; color:#e74c3c; margin:5px;}
  3. .post_hide_box form{ margin:15px 0;}
  4. .post_hide_box form span{ font-size:18px; font-weight:700;}
  5. .post_hide_box .erweima{ margin-left:20px; margin-right:16px;}
  6. .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;}
  7. .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;}
  8. .post_hide_box .details span{color:#e74c3c;}

3 集成短代码

为了方便使用,在后台文本编辑器中集成该短代码。将以下代码放入 functions.php 中即可:

  1. // 后台文本编辑框中添加公众号隐藏简码按钮
  2. function lxtx_wpsites_add_gzh_quicktags() {
  3.     if (wp_script_is('quicktags')){
  4. ?>
  5.     <script type="text/javascript">
  6.     QTags.addButton( 'gzh2v', ' 公众号隐藏', '\n[gzh2v keyword="关键字" key="验证码"]隐藏内容[/gzh2v]', "" );
  7.     </script>
  8. <?php
  9.     }
  10. }
  11. add_action( 'admin_print_footer_scripts', 'lxtx_wpsites_add_gzh_quicktags' );

4 使用方法

4.1 在文章中使用短代码

插入以下简码,修改相关内容即可:

4.2 微信公众号

这里以微信公众号为例(QQ 公众号应该也是这样),在微信公众号的“自动回复-关键字自动回复”中设置好关键字(对应上面代码中的 keyword)及验证码(对应上面代码中的 key)。

比如本文中,keyword 为 2483,key 为???自行关注后查看哈~

5 延伸

其实本文是跟常见的“文章部分内容回复后看见”或“文章部分内容登录后可见”的代码原理一致,只是结合了一下公众号而已。大家可以动动手集成到自己的主题哈!

1. 如有链接无法下载、失效或广告,请联系QQ:181289218 处理!
2. 本站的所有资源为购买、网络收集,或者用户投稿的资源,版权归原作者及网站所有!
3. 如若侵犯了您的权利,请及时联系站长删除!
4. 本站提供的资源,都不包含技术服务请大家谅解!
5. 此软件“仅限学习交流,不能用于商业用途”!
6. 如用于商业用途,请到官方购买正版软件,追究法律责任与“云墨SEO”站点无关!
  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 站长技术资源群
  • QQ群:431710796
  • weinxin
云墨
  • 本文由 发表于 2018年8月29日
  • 转载请务必保留本文链接:https://www.yunmoseo.com/1405.html
WordPress回复评论自动添加@评论者的修改方法 网站建设

WordPress回复评论自动添加@评论者的修改方法

有网友留言,问我这个@昵称回复如何实现的?如下图: 其实之前我也看到很多博客有这样的功能,但是我是在后台审核并回复评论的,之前有好几次因为没注意评论信息栏的:回复给***,还以为是给我的留言,所以给人...
匿名

发表评论

匿名网友