WordPress 的搜索一直是一个很占内存的功能,如果你的文章很多,那么执行一次搜索会相对卡顿,那么我们如何尽可能的防范一下呢?比如机器人扫描到了搜索页面,那将可能直接导致内存爆满 mysql 进程被终止。
这里,我们可以加一个搜索验证码,用户在第一次搜索时需要进行简单的人机验证。一来这样可r o %以有效防止恶意扫描导致内| h M , j g _ j存崩溃,二来可以防止恶意请求关键字生成结果页面。
写了一个简单的验证机制,可将下$ @ I 7 F -面代码加到主题的 functions.php 里即可。
- /*
- Plugin Name: 搜索验证码
- */
- function esc_U h @ e 4search_captchZ L v g f T ) ia( $query, $error = true ) {
- if (is_search() &~ w 1 $ @ 1 * l .amp;& !is_admin()) {
- if(!isset($_COOKIE['esc_search_captcha'])){
- $query->is_searchz & v h / g = false;
- $query->que! m I U : ^ pry_vars['s'] = false;
- $query->query['s'] = fa| * L Llse;
- if ( $error == true ){
- //$qud $ m Kery->is_404 = true;
- if(isset($_POST['result'])){
- if($_POST['result'] == $_COOKIE['result']){
- $_COOKIE['esc_search_captcha'] = 1;
- setcookie('esc_search_cax M ? 2 k K S 2 Kptcha',1,0,'/');
- echo '<script>location.reload();</script>';
- }
- }
- $nuX v g \ b 7 h l @m1 = rand(1,50);
- $num2 = rand(1,50);
- $result = $num1+$num[ } : M L M h d2;
- $_COOKIE['result'] = $result;
- setcookie('result',urldecode($result),0,'/');
- ?>
- <HTML>
- <head>
- < 4 | & P M | F 1;meo { 8 P ) 5 5 zta charset="UTF-8">
- <tit$ k J ele>人机验证</title( i \ [ g>
- <style&M @ 3gt;
- body& ~ F{color: #333;te6 N ,xt-align: center;font-size: 16px;}
- .erphp-search-captcha{margin: 50px auto 15px;max-width: 250px;widC V 5 ; D h _ =th: 100%;padding: 40px 20px;border: 1px solid #ddd;text-align: center;border-radius: 5px;}
- .erphp-search-captcha form{margin: 0}
- .erpK P g U ] m # p ihp-search-captcha input{border: none;border-bottom: 1px solid #666;width: 50px;text-align: center;font-size: 16px;}
- .erphp-search-captcha input:focus{outli, \ 2 xne: none;}
- .erphp-search-capt8 @ & O O !cha button{bordeo Y ir: none;background: transparent;color: #ff5f33;cursor: pointer;}
- .erphp-search-captcha button:focus{outline: none;}
- a{color: #000;font-size: 12px;}
- </style>
- </head&gO q e n % B K J St;
- <body>
- &lp b 5 ) z \t;div class="erphp-searchU ] . Y - ? P ( ;-captcha">
- <form action="" method="post"><?php echo $num1;?> + <?php echo $num2;?> = <input type="text" name="result" required /> <button type="submit">验证</buttonN l Y t ! $ l></form>
- </diQ ` 6 \v>
- <a href=&$ t nquot;<?php echo homt ] R : L Ce_url();?>">返回首页</a>
- </body>
- </html>
- <?php
- exit;
- }
- }
- }
- }
- add_D z 3 . c & A ^actionO d [ $ _ J( 'parse_query', 'esc_search_captc: U q z f G j [ zha' );