WordPress 如何给搜索页面展示结果前加一个人机验证码

WordPress 的搜索一直是一个很占内存的功能,如果你的文章很多,那么执行一次搜索会相对卡顿,那么我们如何尽可能的防范一下呢?比如机器人扫描到了搜索页面,那将可能直接导致内存爆满 mysql 进程被终止。

这里,我们可以加一个搜索验证码,用户在第一次搜索时需要进行简单的人机验证。一来这样可以有效防止恶意扫描导致内存崩溃,二来可以防止恶意请求关键字生成结果页面。

写了一个简单的验证机制,可将下面代码加到主题的 functions.php 里即可。

  1. /*
  2. Plugin Name: 搜索验证码
  3. */
  4. function esc_search_captcha( $query, $error = true ) {
  5. if (is_search() && !is_admin()) {
  6. if(!isset($_COOKIE['esc_search_captcha'])){
  7. $query->is_search = false;
  8. $query->query_vars['s'] = false;
  9. $query->query['s'] = false;
  10. if ( $error == true ){
  11. //$query->is_404 = true;
  12. if(isset($_POST['result'])){
  13. if($_POST['result'] == $_COOKIE['result']){
  14. $_COOKIE['esc_search_captcha'] = 1;
  15. setcookie('esc_search_captcha',1,0,'/');
  16. echo '<script>location.reload();</script>';
  17. }
  18. }
  19. $num1 = rand(1,50);
  20. $num2 = rand(1,50);
  21. $result = $num1+$num2;
  22. $_COOKIE['result'] = $result;
  23. setcookie('result',urldecode($result),0,'/');
  24. ?>
  25. <HTML>
  26. <head>
  27. <meta charset="UTF-8">
  28. <title>人机验证</title>
  29. <style>
  30. body{color: #333;text-align: center;font-size: 16px;}
  31. .erphp-search-captcha{margin: 50px auto 15px;max-width: 250px;width: 100%;padding: 40px 20px;border: 1px solid #ddd;text-align: center;border-radius: 5px;}
  32. .erphp-search-captcha form{margin: 0}
  33. .erphp-search-captcha input{border: none;border-bottom: 1px solid #666;width: 50px;text-align: center;font-size: 16px;}
  34. .erphp-search-captcha input:focus{outline: none;}
  35. .erphp-search-captcha button{border: none;background: transparent;color: #ff5f33;cursor: pointer;}
  36. .erphp-search-captcha button:focus{outline: none;}
  37. a{color: #000;font-size: 12px;}
  38. </style>
  39. </head>
  40. <body>
  41. <div class="erphp-search-captcha">
  42. <form action="" method="post"><?php echo $num1;?> + <?php echo $num2;?> = <input type="text" name="result" required /> <button type="submit">验证</button></form>
  43. </div>
  44. <a href="<?php echo home_url();?>">返回首页</a>
  45. </body>
  46. </html>
  47. <?php
  48. exit;
  49. }
  50. }
  51. }
  52. }
  53. add_action( 'parse_query', 'esc_search_captcha' );
溫馨提示:

文章標題:WordPress 如何给搜索页面展示结果前加一个人机验证码

文章連結:https://www.wuyanshuo.cn/854.html

更新時間:2022年6月5日

1、本站所有資源均不添加推廣檔案或浮水印,壓縮包內若有廣告檔案和浮水印請勿輕易相信。

2、本站資源均為兩層壓縮,第一層7z(尾碼若為wys,請自行修改為7z)有解壓密碼; 第二層zip或cbz,無解壓密碼,可直接使用漫畫類軟件程式查看; 詳情可參攷解壓教程

3、本站大部分內容均收集於網絡! 若內容侵犯到您的權益,請發送郵件至:admin#wysacg.top我們將第一時間處理! 資源所需價格並非資源售賣價格,是收集、整理、編輯詳情以及本站運營的適當補貼,並且本站不提供任何免費技術支援。 所有資源僅限於參攷和學習,版權歸原作者所有!

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

WordPress 搜索页面显示用户搜索记录

2022-6-5 11:00:35

建站教程

WP_Query使用meta_query里比较大小时compare用>=、、

2022-6-5 14:00:47

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