Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function my_protect_search() {
- if ( is_search() && ! is_user_logged_in() ) {
- wp_redirect( home_url() );
- exit;
- }
- }
- add_action( 'template_redirect', 'my_protect_search' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement