Advertisement
verygoodplugins

Untitled

Sep 6th, 2019
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. function my_protect_search() {
  2.  
  3.     if ( is_search() && ! is_user_logged_in() ) {
  4.         wp_redirect( home_url() );
  5.         exit;
  6.     }
  7.  
  8. }
  9.  
  10. add_action( 'template_redirect', 'my_protect_search' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement