rdusnr

Untitled

Sep 29th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_action('wp', 'check_search_restrict_numbers_only');
  2. function check_search_restrict_numbers_only() {
  3.  
  4. global $wp_query;
  5.  
  6. if (!$s = get_search_query())
  7. return false;
  8.  
  9. if (!is_numeric($s)) {
  10. $wp_query->set_404();
  11. status_header(404);
  12. get_template_part(404);
  13. exit();
  14. }
  15.  
  16. }
Add Comment
Please, Sign In to add comment