Advertisement
meetsos

WP Redirect non Admins to another Homepage

Jun 28th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function wpse101952_redirect()
  2. {
  3.     global $post;
  4.     if( !current_user_can('administrator'))
  5.     {
  6.         wp_redirect( 'http://test.com/comingsoon.html');
  7.         exit();
  8.     }
  9. }
  10. add_action( 'template_redirect', 'wpse101952_redirect' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement